@khanacademy/wonder-blocks-testing 9.0.0 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/es/index.js +35 -11
- package/dist/harness/adapt.d.ts +17 -0
- package/dist/harness/adapter.d.ts +16 -0
- package/dist/index.js +35 -11
- package/package.json +1 -1
- package/src/harness/__tests__/adapt.test.tsx +200 -0
- package/src/harness/__tests__/adapter.test.tsx +67 -0
- package/src/harness/__tests__/make-test-harness.test.tsx +16 -10
- package/src/harness/adapt.tsx +55 -0
- package/src/harness/adapter.tsx +27 -0
- package/src/harness/adapters/__tests__/ssr.test.tsx +46 -5
- package/src/harness/adapters/ssr.tsx +7 -3
- package/src/harness/make-test-harness.tsx +6 -8
- package/tsconfig-build.tsbuildinfo +1 -1
- package/dist/harness/render-adapters.d.ts +0 -6
- package/src/harness/__tests__/render-adapters.test.tsx +0 -97
- package/src/harness/render-adapters.tsx +0 -26
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-testing
|
|
2
2
|
|
|
3
|
+
## 9.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6ed7e928: Test harness adapters are now rendered as React components which should ensure that contexts are properly available when children are rendered inside the adapters that require those contexts
|
|
8
|
+
|
|
3
9
|
## 9.0.0
|
|
4
10
|
|
|
5
11
|
### Major Changes
|
package/dist/es/index.js
CHANGED
|
@@ -739,7 +739,7 @@ const RenderStateRoot = ({
|
|
|
739
739
|
const defaultConfig = null;
|
|
740
740
|
const adapter = (children, config) => {
|
|
741
741
|
if (config !== true) {
|
|
742
|
-
throw new KindError("Unexpected
|
|
742
|
+
throw new KindError("Unexpected configuration: set config to null to turn this adapter off", Errors.InvalidInput, {
|
|
743
743
|
metadata: {
|
|
744
744
|
config
|
|
745
745
|
}
|
|
@@ -784,22 +784,46 @@ function _extends() {
|
|
|
784
784
|
return _extends.apply(this, arguments);
|
|
785
785
|
}
|
|
786
786
|
|
|
787
|
-
const
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
}
|
|
787
|
+
const Adapter = ({
|
|
788
|
+
children,
|
|
789
|
+
adapter,
|
|
790
|
+
config
|
|
791
|
+
}) => {
|
|
792
|
+
if (config == null) {
|
|
793
|
+
return React.createElement(React.Fragment, null, children);
|
|
795
794
|
}
|
|
796
|
-
return
|
|
795
|
+
return adapter(children, config);
|
|
796
|
+
};
|
|
797
|
+
|
|
798
|
+
const Adapt = ({
|
|
799
|
+
children,
|
|
800
|
+
adapters,
|
|
801
|
+
configs
|
|
802
|
+
}) => {
|
|
803
|
+
const thisAdapterName = Object.keys(adapters).at(-1);
|
|
804
|
+
if (thisAdapterName == null) {
|
|
805
|
+
return React.createElement(React.Fragment, null, children);
|
|
806
|
+
}
|
|
807
|
+
const thisAdapter = adapters[thisAdapterName];
|
|
808
|
+
const thisConfig = configs[thisAdapterName];
|
|
809
|
+
const restAdapters = Object.fromEntries(Object.entries(adapters).slice(0, -1));
|
|
810
|
+
const restConfigs = Object.fromEntries(Object.entries(configs).filter(([name]) => name !== thisAdapterName));
|
|
811
|
+
return React.createElement(Adapter, {
|
|
812
|
+
adapter: thisAdapter,
|
|
813
|
+
config: thisConfig
|
|
814
|
+
}, React.createElement(Adapt, {
|
|
815
|
+
adapters: restAdapters,
|
|
816
|
+
configs: restConfigs
|
|
817
|
+
}, children));
|
|
797
818
|
};
|
|
798
819
|
|
|
799
820
|
const makeTestHarness = (adapters, defaultConfigs) => {
|
|
800
821
|
return (Component, configs) => {
|
|
801
822
|
const fullConfig = _extends({}, defaultConfigs, configs);
|
|
802
|
-
const harnessedComponent = React.forwardRef((props, ref) =>
|
|
823
|
+
const harnessedComponent = React.forwardRef((props, ref) => React.createElement(Adapt, {
|
|
824
|
+
adapters: adapters,
|
|
825
|
+
configs: fullConfig
|
|
826
|
+
}, React.createElement(Component, _extends({}, props, {
|
|
803
827
|
ref: ref
|
|
804
828
|
}))));
|
|
805
829
|
harnessedComponent.displayName = `testHarness(${Component.displayName || Component.name || "Component"})`;
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { TestHarnessConfigs, TestHarnessAdapters } from "./types";
|
|
3
|
+
type Props<TAdapters extends TestHarnessAdapters> = {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
adapters: TAdapters;
|
|
6
|
+
configs: TestHarnessConfigs<TAdapters>;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Render a set of adapters around the given children.
|
|
10
|
+
*
|
|
11
|
+
* Adapters are rendered with the last adapter being the outermost and the first
|
|
12
|
+
* adapter being the innermost, with children being the innermost of all. This
|
|
13
|
+
* ensures that we are backwards compatible with previous releases of the
|
|
14
|
+
* test harness.
|
|
15
|
+
*/
|
|
16
|
+
export declare const Adapt: <TAdapters extends TestHarnessAdapters>({ children, adapters, configs, }: Props<TAdapters>) => React.ReactElement;
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { TestHarnessAdapter } from "./types";
|
|
3
|
+
type Props<TConfig, TAdapter extends TestHarnessAdapter<TConfig>> = {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
adapter: TAdapter;
|
|
6
|
+
config: TConfig | null | undefined;
|
|
7
|
+
};
|
|
8
|
+
/**
|
|
9
|
+
* Component that optionally renders a given adapter with the given config.
|
|
10
|
+
*
|
|
11
|
+
* If the config is nullish, then the children are rendered in a fragment,
|
|
12
|
+
* otherwise the children are rendered within the given adapter with the
|
|
13
|
+
* given config.
|
|
14
|
+
*/
|
|
15
|
+
export declare const Adapter: <TConfig, TAdapter extends TestHarnessAdapter<TConfig>>({ children, adapter, config, }: Props<TConfig, TAdapter>) => React.ReactElement;
|
|
16
|
+
export {};
|
package/dist/index.js
CHANGED
|
@@ -762,7 +762,7 @@ const RenderStateRoot = ({
|
|
|
762
762
|
const defaultConfig = null;
|
|
763
763
|
const adapter = (children, config) => {
|
|
764
764
|
if (config !== true) {
|
|
765
|
-
throw new wonderStuffCore.KindError("Unexpected
|
|
765
|
+
throw new wonderStuffCore.KindError("Unexpected configuration: set config to null to turn this adapter off", wonderStuffCore.Errors.InvalidInput, {
|
|
766
766
|
metadata: {
|
|
767
767
|
config
|
|
768
768
|
}
|
|
@@ -807,22 +807,46 @@ function _extends() {
|
|
|
807
807
|
return _extends.apply(this, arguments);
|
|
808
808
|
}
|
|
809
809
|
|
|
810
|
-
const
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
}
|
|
810
|
+
const Adapter = ({
|
|
811
|
+
children,
|
|
812
|
+
adapter,
|
|
813
|
+
config
|
|
814
|
+
}) => {
|
|
815
|
+
if (config == null) {
|
|
816
|
+
return React__namespace.createElement(React__namespace.Fragment, null, children);
|
|
818
817
|
}
|
|
819
|
-
return
|
|
818
|
+
return adapter(children, config);
|
|
819
|
+
};
|
|
820
|
+
|
|
821
|
+
const Adapt = ({
|
|
822
|
+
children,
|
|
823
|
+
adapters,
|
|
824
|
+
configs
|
|
825
|
+
}) => {
|
|
826
|
+
const thisAdapterName = Object.keys(adapters).at(-1);
|
|
827
|
+
if (thisAdapterName == null) {
|
|
828
|
+
return React__namespace.createElement(React__namespace.Fragment, null, children);
|
|
829
|
+
}
|
|
830
|
+
const thisAdapter = adapters[thisAdapterName];
|
|
831
|
+
const thisConfig = configs[thisAdapterName];
|
|
832
|
+
const restAdapters = Object.fromEntries(Object.entries(adapters).slice(0, -1));
|
|
833
|
+
const restConfigs = Object.fromEntries(Object.entries(configs).filter(([name]) => name !== thisAdapterName));
|
|
834
|
+
return React__namespace.createElement(Adapter, {
|
|
835
|
+
adapter: thisAdapter,
|
|
836
|
+
config: thisConfig
|
|
837
|
+
}, React__namespace.createElement(Adapt, {
|
|
838
|
+
adapters: restAdapters,
|
|
839
|
+
configs: restConfigs
|
|
840
|
+
}, children));
|
|
820
841
|
};
|
|
821
842
|
|
|
822
843
|
const makeTestHarness = (adapters, defaultConfigs) => {
|
|
823
844
|
return (Component, configs) => {
|
|
824
845
|
const fullConfig = _extends({}, defaultConfigs, configs);
|
|
825
|
-
const harnessedComponent = React__namespace.forwardRef((props, ref) =>
|
|
846
|
+
const harnessedComponent = React__namespace.forwardRef((props, ref) => React__namespace.createElement(Adapt, {
|
|
847
|
+
adapters: adapters,
|
|
848
|
+
configs: fullConfig
|
|
849
|
+
}, React__namespace.createElement(Component, _extends({}, props, {
|
|
826
850
|
ref: ref
|
|
827
851
|
}))));
|
|
828
852
|
harnessedComponent.displayName = `testHarness(${Component.displayName || Component.name || "Component"})`;
|
package/package.json
CHANGED
|
@@ -0,0 +1,200 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import {render} from "@testing-library/react";
|
|
3
|
+
|
|
4
|
+
import {Adapt} from "../adapt";
|
|
5
|
+
|
|
6
|
+
import type {TestHarnessAdapter, TestHarnessConfigs} from "../types";
|
|
7
|
+
|
|
8
|
+
describe("Adapt", () => {
|
|
9
|
+
it("should render children if no adapters", () => {
|
|
10
|
+
// Arrange
|
|
11
|
+
const children = <div>Adapt me!</div>;
|
|
12
|
+
|
|
13
|
+
// Act
|
|
14
|
+
const {container: result} = render(
|
|
15
|
+
<Adapt adapters={{}} configs={{}}>
|
|
16
|
+
{children}
|
|
17
|
+
</Adapt>,
|
|
18
|
+
);
|
|
19
|
+
|
|
20
|
+
// Assert
|
|
21
|
+
expect(result).toMatchInlineSnapshot(`
|
|
22
|
+
<div>
|
|
23
|
+
<div>
|
|
24
|
+
Adapt me!
|
|
25
|
+
</div>
|
|
26
|
+
</div>
|
|
27
|
+
`);
|
|
28
|
+
});
|
|
29
|
+
|
|
30
|
+
it("should invoke the adapter with its corresponding config", () => {
|
|
31
|
+
// Arrange
|
|
32
|
+
const children = <div>Adapt me!</div>;
|
|
33
|
+
const adapters = {
|
|
34
|
+
adapterA: jest
|
|
35
|
+
.fn()
|
|
36
|
+
.mockReturnValue("ADAPTER A") as TestHarnessAdapter<string>,
|
|
37
|
+
} as const;
|
|
38
|
+
const configs: TestHarnessConfigs<typeof adapters> = {
|
|
39
|
+
adapterA: "APPLY A CONFIG",
|
|
40
|
+
};
|
|
41
|
+
|
|
42
|
+
// Act
|
|
43
|
+
render(
|
|
44
|
+
<Adapt adapters={adapters} configs={configs}>
|
|
45
|
+
{children}
|
|
46
|
+
</Adapt>,
|
|
47
|
+
);
|
|
48
|
+
|
|
49
|
+
// Assert
|
|
50
|
+
expect(adapters.adapterA).toHaveBeenCalledWith(
|
|
51
|
+
expect.anything(),
|
|
52
|
+
"APPLY A CONFIG",
|
|
53
|
+
);
|
|
54
|
+
});
|
|
55
|
+
|
|
56
|
+
it("should render each adapter and the children", () => {
|
|
57
|
+
// Arrange
|
|
58
|
+
const children = "Adapt me!";
|
|
59
|
+
const adapter: TestHarnessAdapter<string> = (c: any, conf: any) => (
|
|
60
|
+
<>
|
|
61
|
+
{conf}
|
|
62
|
+
{c}
|
|
63
|
+
</>
|
|
64
|
+
);
|
|
65
|
+
const adapters = {
|
|
66
|
+
adapterA: adapter,
|
|
67
|
+
adapterB: adapter,
|
|
68
|
+
adapterC: adapter,
|
|
69
|
+
} as const;
|
|
70
|
+
const configs: TestHarnessConfigs<typeof adapters> = {
|
|
71
|
+
adapterA: "A",
|
|
72
|
+
adapterB: "B",
|
|
73
|
+
adapterC: "C",
|
|
74
|
+
};
|
|
75
|
+
|
|
76
|
+
// Act
|
|
77
|
+
const {container: result} = render(
|
|
78
|
+
<Adapt adapters={adapters} configs={configs}>
|
|
79
|
+
{children}
|
|
80
|
+
</Adapt>,
|
|
81
|
+
);
|
|
82
|
+
|
|
83
|
+
// Assert
|
|
84
|
+
expect(result).toMatchInlineSnapshot(`
|
|
85
|
+
<div>
|
|
86
|
+
C
|
|
87
|
+
B
|
|
88
|
+
A
|
|
89
|
+
Adapt me!
|
|
90
|
+
</div>
|
|
91
|
+
`);
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
it("should skip adapters where the corresponding config is null", () => {
|
|
95
|
+
// Arrange
|
|
96
|
+
const children = "Adapt me!";
|
|
97
|
+
const adapter: TestHarnessAdapter<string> = (c: any, conf: any) => (
|
|
98
|
+
<>
|
|
99
|
+
{conf}
|
|
100
|
+
{c}
|
|
101
|
+
</>
|
|
102
|
+
);
|
|
103
|
+
const adapters = {
|
|
104
|
+
adapterA: adapter,
|
|
105
|
+
adapterB: adapter,
|
|
106
|
+
adapterC: adapter,
|
|
107
|
+
} as const;
|
|
108
|
+
const configs: TestHarnessConfigs<typeof adapters> = {
|
|
109
|
+
adapterA: "A",
|
|
110
|
+
adapterB: null,
|
|
111
|
+
adapterC: "C",
|
|
112
|
+
};
|
|
113
|
+
|
|
114
|
+
// Act
|
|
115
|
+
const {container: result} = render(
|
|
116
|
+
<Adapt adapters={adapters} configs={configs}>
|
|
117
|
+
{children}
|
|
118
|
+
</Adapt>,
|
|
119
|
+
);
|
|
120
|
+
|
|
121
|
+
// Assert
|
|
122
|
+
expect(result).toMatchInlineSnapshot(`
|
|
123
|
+
<div>
|
|
124
|
+
C
|
|
125
|
+
A
|
|
126
|
+
Adapt me!
|
|
127
|
+
</div>
|
|
128
|
+
`);
|
|
129
|
+
});
|
|
130
|
+
|
|
131
|
+
it("should render such that contexts are properly setup in order", () => {
|
|
132
|
+
// Arrange
|
|
133
|
+
const MyContext = React.createContext("root");
|
|
134
|
+
const ContextRoot = ({children}: any): React.ReactElement => {
|
|
135
|
+
const value = React.useContext(MyContext);
|
|
136
|
+
if (value !== "root") {
|
|
137
|
+
throw new Error("Don't nest this");
|
|
138
|
+
}
|
|
139
|
+
return (
|
|
140
|
+
<MyContext.Provider value={"other"}>
|
|
141
|
+
{children}
|
|
142
|
+
</MyContext.Provider>
|
|
143
|
+
);
|
|
144
|
+
};
|
|
145
|
+
const adapterNoContext: TestHarnessAdapter<string> = (
|
|
146
|
+
c: any,
|
|
147
|
+
conf: any,
|
|
148
|
+
) => (
|
|
149
|
+
<>
|
|
150
|
+
{conf}
|
|
151
|
+
{c}
|
|
152
|
+
</>
|
|
153
|
+
);
|
|
154
|
+
const adapterWithContext: TestHarnessAdapter<string> = (
|
|
155
|
+
c: any,
|
|
156
|
+
conf: string,
|
|
157
|
+
) => (
|
|
158
|
+
<ContextRoot>
|
|
159
|
+
{conf}
|
|
160
|
+
{c}
|
|
161
|
+
</ContextRoot>
|
|
162
|
+
);
|
|
163
|
+
const adapters = {
|
|
164
|
+
adapterA: adapterNoContext,
|
|
165
|
+
adapterB: adapterWithContext,
|
|
166
|
+
adapterC: adapterNoContext,
|
|
167
|
+
} as const;
|
|
168
|
+
const configs: TestHarnessConfigs<typeof adapters> = {
|
|
169
|
+
adapterA: "A",
|
|
170
|
+
adapterB: "B",
|
|
171
|
+
adapterC: "C",
|
|
172
|
+
};
|
|
173
|
+
const ChildComponent = (props: any): React.ReactElement => {
|
|
174
|
+
const value = React.useContext(MyContext);
|
|
175
|
+
if (value === "default") {
|
|
176
|
+
throw new Error("Context not setup properly");
|
|
177
|
+
}
|
|
178
|
+
return <div>{value}</div>;
|
|
179
|
+
};
|
|
180
|
+
|
|
181
|
+
// Act
|
|
182
|
+
const {container: result} = render(
|
|
183
|
+
<Adapt adapters={adapters} configs={configs}>
|
|
184
|
+
<ChildComponent />
|
|
185
|
+
</Adapt>,
|
|
186
|
+
);
|
|
187
|
+
|
|
188
|
+
// Assert
|
|
189
|
+
expect(result).toMatchInlineSnapshot(`
|
|
190
|
+
<div>
|
|
191
|
+
C
|
|
192
|
+
B
|
|
193
|
+
A
|
|
194
|
+
<div>
|
|
195
|
+
other
|
|
196
|
+
</div>
|
|
197
|
+
</div>
|
|
198
|
+
`);
|
|
199
|
+
});
|
|
200
|
+
});
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import {render} from "@testing-library/react";
|
|
3
|
+
|
|
4
|
+
import {TestHarnessAdapter} from "../types";
|
|
5
|
+
|
|
6
|
+
import {Adapter} from "../adapter";
|
|
7
|
+
|
|
8
|
+
describe("Adapter", () => {
|
|
9
|
+
it("should render only the children if the adapter config is nullish", () => {
|
|
10
|
+
// Arrange
|
|
11
|
+
const adapter: TestHarnessAdapter<string> = (children, config) => (
|
|
12
|
+
<div id="adapter">
|
|
13
|
+
{config}
|
|
14
|
+
{children}
|
|
15
|
+
</div>
|
|
16
|
+
);
|
|
17
|
+
const children = "Adapt me!";
|
|
18
|
+
|
|
19
|
+
// Act
|
|
20
|
+
const {container: result} = render(
|
|
21
|
+
<Adapter
|
|
22
|
+
adapter={adapter}
|
|
23
|
+
config={null as null | undefined | string}
|
|
24
|
+
>
|
|
25
|
+
{children}
|
|
26
|
+
</Adapter>,
|
|
27
|
+
);
|
|
28
|
+
|
|
29
|
+
// Assert
|
|
30
|
+
expect(result).toMatchInlineSnapshot(`
|
|
31
|
+
<div>
|
|
32
|
+
Adapt me!
|
|
33
|
+
</div>
|
|
34
|
+
`);
|
|
35
|
+
});
|
|
36
|
+
|
|
37
|
+
it("should render the adapter around the children if the config is not nullish", () => {
|
|
38
|
+
// Arrange
|
|
39
|
+
const adapter: TestHarnessAdapter<string> = (children, config) => (
|
|
40
|
+
<div id="adapter">
|
|
41
|
+
{config}
|
|
42
|
+
{children}
|
|
43
|
+
</div>
|
|
44
|
+
);
|
|
45
|
+
const children = "Adapt me!";
|
|
46
|
+
const config = "this-is-the-config";
|
|
47
|
+
|
|
48
|
+
// Act
|
|
49
|
+
const {container: result} = render(
|
|
50
|
+
<Adapter adapter={adapter} config={config}>
|
|
51
|
+
{children}
|
|
52
|
+
</Adapter>,
|
|
53
|
+
);
|
|
54
|
+
|
|
55
|
+
// Assert
|
|
56
|
+
expect(result).toMatchInlineSnapshot(`
|
|
57
|
+
<div>
|
|
58
|
+
<div
|
|
59
|
+
id="adapter"
|
|
60
|
+
>
|
|
61
|
+
this-is-the-config
|
|
62
|
+
Adapt me!
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
`);
|
|
66
|
+
});
|
|
67
|
+
});
|
|
@@ -2,7 +2,7 @@ import * as React from "react";
|
|
|
2
2
|
import {Route} from "react-router-dom";
|
|
3
3
|
import {render} from "@testing-library/react";
|
|
4
4
|
|
|
5
|
-
import * as RA from "../
|
|
5
|
+
import * as RA from "../adapt";
|
|
6
6
|
import {makeTestHarness} from "../make-test-harness";
|
|
7
7
|
import {DefaultConfigs, DefaultAdapters} from "../adapters/adapters";
|
|
8
8
|
|
|
@@ -75,7 +75,7 @@ describe("#makeTestHarness", () => {
|
|
|
75
75
|
DefaultConfigs,
|
|
76
76
|
);
|
|
77
77
|
const Component = () => <div>test</div>;
|
|
78
|
-
const renderSpy = jest.spyOn(RA, "
|
|
78
|
+
const renderSpy = jest.spyOn(RA, "Adapt");
|
|
79
79
|
|
|
80
80
|
// Act
|
|
81
81
|
const HarnessedComponent = testHarness(Component);
|
|
@@ -83,9 +83,12 @@ describe("#makeTestHarness", () => {
|
|
|
83
83
|
|
|
84
84
|
// Assert
|
|
85
85
|
expect(renderSpy).toHaveBeenCalledWith(
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
{
|
|
87
|
+
adapters: DefaultAdapters,
|
|
88
|
+
configs: DefaultConfigs,
|
|
89
|
+
children: expect.anything(),
|
|
90
|
+
},
|
|
91
|
+
{},
|
|
89
92
|
);
|
|
90
93
|
});
|
|
91
94
|
|
|
@@ -132,7 +135,7 @@ describe("#makeTestHarness", () => {
|
|
|
132
135
|
router: "/mysecretplace",
|
|
133
136
|
};
|
|
134
137
|
const Component = () => <div>test</div>;
|
|
135
|
-
const renderSpy = jest.spyOn(RA, "
|
|
138
|
+
const renderSpy = jest.spyOn(RA, "Adapt");
|
|
136
139
|
|
|
137
140
|
// Act
|
|
138
141
|
const HarnessedComponent = testHarness(
|
|
@@ -143,12 +146,15 @@ describe("#makeTestHarness", () => {
|
|
|
143
146
|
|
|
144
147
|
// Assert
|
|
145
148
|
expect(renderSpy).toHaveBeenCalledWith(
|
|
146
|
-
DefaultAdapters,
|
|
147
149
|
{
|
|
148
|
-
|
|
149
|
-
|
|
150
|
+
adapters: DefaultAdapters,
|
|
151
|
+
configs: {
|
|
152
|
+
...DefaultConfigs,
|
|
153
|
+
router: configOverrides.router,
|
|
154
|
+
},
|
|
155
|
+
children: expect.anything(),
|
|
150
156
|
},
|
|
151
|
-
|
|
157
|
+
{},
|
|
152
158
|
);
|
|
153
159
|
});
|
|
154
160
|
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
import {Adapter} from "./adapter";
|
|
4
|
+
|
|
5
|
+
import type {TestHarnessConfigs, TestHarnessAdapters} from "./types";
|
|
6
|
+
|
|
7
|
+
type Props<TAdapters extends TestHarnessAdapters> = {
|
|
8
|
+
children: React.ReactNode;
|
|
9
|
+
adapters: TAdapters;
|
|
10
|
+
configs: TestHarnessConfigs<TAdapters>;
|
|
11
|
+
};
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* Render a set of adapters around the given children.
|
|
15
|
+
*
|
|
16
|
+
* Adapters are rendered with the last adapter being the outermost and the first
|
|
17
|
+
* adapter being the innermost, with children being the innermost of all. This
|
|
18
|
+
* ensures that we are backwards compatible with previous releases of the
|
|
19
|
+
* test harness.
|
|
20
|
+
*/
|
|
21
|
+
export const Adapt = <TAdapters extends TestHarnessAdapters>({
|
|
22
|
+
children,
|
|
23
|
+
adapters,
|
|
24
|
+
configs,
|
|
25
|
+
}: Props<TAdapters>): React.ReactElement => {
|
|
26
|
+
// We start at the end of the adapter list and work backwards to be
|
|
27
|
+
// compatible with previous releases.
|
|
28
|
+
const thisAdapterName = Object.keys(adapters).at(-1);
|
|
29
|
+
if (thisAdapterName == null) {
|
|
30
|
+
// There are no adapters. Just render the children.
|
|
31
|
+
return <>{children}</>;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
const thisAdapter = adapters[thisAdapterName];
|
|
35
|
+
const thisConfig = configs[thisAdapterName];
|
|
36
|
+
|
|
37
|
+
// NOTE: We could simplify this by using an array of tuples as the input
|
|
38
|
+
// prop, but that complicates other things like testing and I think
|
|
39
|
+
// for simplicities sake elsewhere, this is good enough.
|
|
40
|
+
const restAdapters = Object.fromEntries(
|
|
41
|
+
Object.entries(adapters).slice(0, -1),
|
|
42
|
+
);
|
|
43
|
+
const restConfigs = Object.fromEntries(
|
|
44
|
+
// The config object may not be ordered the same as the adapters so
|
|
45
|
+
// we must filter by adapter name here.
|
|
46
|
+
Object.entries(configs).filter(([name]) => name !== thisAdapterName),
|
|
47
|
+
);
|
|
48
|
+
return (
|
|
49
|
+
<Adapter adapter={thisAdapter} config={thisConfig}>
|
|
50
|
+
<Adapt adapters={restAdapters} configs={restConfigs}>
|
|
51
|
+
{children}
|
|
52
|
+
</Adapt>
|
|
53
|
+
</Adapter>
|
|
54
|
+
);
|
|
55
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
|
|
3
|
+
import type {TestHarnessAdapter} from "./types";
|
|
4
|
+
|
|
5
|
+
type Props<TConfig, TAdapter extends TestHarnessAdapter<TConfig>> = {
|
|
6
|
+
children: React.ReactNode;
|
|
7
|
+
adapter: TAdapter;
|
|
8
|
+
config: TConfig | null | undefined;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Component that optionally renders a given adapter with the given config.
|
|
13
|
+
*
|
|
14
|
+
* If the config is nullish, then the children are rendered in a fragment,
|
|
15
|
+
* otherwise the children are rendered within the given adapter with the
|
|
16
|
+
* given config.
|
|
17
|
+
*/
|
|
18
|
+
export const Adapter = <TConfig, TAdapter extends TestHarnessAdapter<TConfig>>({
|
|
19
|
+
children,
|
|
20
|
+
adapter,
|
|
21
|
+
config,
|
|
22
|
+
}: Props<TConfig, TAdapter>): React.ReactElement => {
|
|
23
|
+
if (config == null) {
|
|
24
|
+
return <>{children}</>;
|
|
25
|
+
}
|
|
26
|
+
return adapter(children, config);
|
|
27
|
+
};
|
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
import {render, screen} from "@testing-library/react";
|
|
3
|
-
|
|
4
3
|
import * as WBCore from "@khanacademy/wonder-blocks-core";
|
|
4
|
+
import {makeTestHarness} from "../../make-test-harness";
|
|
5
5
|
|
|
6
6
|
import * as SSR from "../ssr";
|
|
7
7
|
|
|
8
|
-
jest.mock("@khanacademy/wonder-stuff-core", () =>
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
jest.mock("@khanacademy/wonder-stuff-core", () => {
|
|
9
|
+
const actualCore = jest.requireActual("@khanacademy/wonder-stuff-core");
|
|
10
|
+
return {
|
|
11
|
+
...actualCore,
|
|
12
|
+
RenderStateRoot: (props: any) => (
|
|
13
|
+
<actualCore.RenderStateRoot {...props} />
|
|
14
|
+
),
|
|
15
|
+
};
|
|
16
|
+
});
|
|
12
17
|
|
|
13
18
|
describe("SSR.adapter", () => {
|
|
14
19
|
it("should render the RenderStateRoot", () => {
|
|
@@ -38,4 +43,40 @@ describe("SSR.adapter", () => {
|
|
|
38
43
|
// Assert
|
|
39
44
|
expect(screen.getByText("CHILDREN!")).toBeInTheDocument();
|
|
40
45
|
});
|
|
46
|
+
|
|
47
|
+
it("should enable harnessing of components that require RenderStateRoot", () => {
|
|
48
|
+
// Arrange
|
|
49
|
+
const ComponentNeedsSsr = (props: any) => {
|
|
50
|
+
const idf = WBCore.useUniqueIdWithoutMock();
|
|
51
|
+
return <div>{idf?.get("my-id")}</div>;
|
|
52
|
+
};
|
|
53
|
+
const testHarness = makeTestHarness(
|
|
54
|
+
{
|
|
55
|
+
ssr: SSR.adapter,
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
ssr: true,
|
|
59
|
+
},
|
|
60
|
+
);
|
|
61
|
+
const Harnessed = testHarness(ComponentNeedsSsr);
|
|
62
|
+
|
|
63
|
+
// Act
|
|
64
|
+
const underTest = () => render(<Harnessed />);
|
|
65
|
+
|
|
66
|
+
// Assert
|
|
67
|
+
expect(underTest).not.toThrowError();
|
|
68
|
+
});
|
|
69
|
+
|
|
70
|
+
it("should throw on bad configuration", () => {
|
|
71
|
+
// Arrange
|
|
72
|
+
const children = <div>CHILDREN!</div>;
|
|
73
|
+
|
|
74
|
+
// Act
|
|
75
|
+
const underTest = () => render(SSR.adapter(children, false as any));
|
|
76
|
+
|
|
77
|
+
// Assert
|
|
78
|
+
expect(underTest).toThrowErrorMatchingInlineSnapshot(
|
|
79
|
+
`"Unexpected configuration: set config to null to turn this adapter off"`,
|
|
80
|
+
);
|
|
81
|
+
});
|
|
41
82
|
});
|
|
@@ -25,9 +25,13 @@ export const adapter: TestHarnessAdapter<Config> = (
|
|
|
25
25
|
config: Config,
|
|
26
26
|
): React.ReactElement<any> => {
|
|
27
27
|
if (config !== true) {
|
|
28
|
-
throw new KindError(
|
|
29
|
-
|
|
30
|
-
|
|
28
|
+
throw new KindError(
|
|
29
|
+
"Unexpected configuration: set config to null to turn this adapter off",
|
|
30
|
+
Errors.InvalidInput,
|
|
31
|
+
{
|
|
32
|
+
metadata: {config},
|
|
33
|
+
},
|
|
34
|
+
);
|
|
31
35
|
}
|
|
32
36
|
return <RenderStateRoot>{children}</RenderStateRoot>;
|
|
33
37
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
2
|
|
|
3
|
-
import {
|
|
3
|
+
import {Adapt} from "./adapt";
|
|
4
4
|
|
|
5
5
|
import type {TestHarnessAdapters, TestHarnessConfigs} from "./types";
|
|
6
6
|
|
|
@@ -43,13 +43,11 @@ export const makeTestHarness = <TAdapters extends TestHarnessAdapters>(
|
|
|
43
43
|
...defaultConfigs,
|
|
44
44
|
...configs,
|
|
45
45
|
};
|
|
46
|
-
const harnessedComponent = React.forwardRef((props: TProps, ref) =>
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
),
|
|
52
|
-
);
|
|
46
|
+
const harnessedComponent = React.forwardRef((props: TProps, ref) => (
|
|
47
|
+
<Adapt adapters={adapters} configs={fullConfig}>
|
|
48
|
+
<Component {...(props as TProps)} ref={ref} />
|
|
49
|
+
</Adapt>
|
|
50
|
+
));
|
|
53
51
|
|
|
54
52
|
// We add a name for the component here so that we can detect that
|
|
55
53
|
// later and also see it in traces and what have you.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2016.full.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/telejson/dist/index.d.ts","../../node_modules/@storybook/addon-actions/dist/index.d.ts","./src/fixtures/types.ts","./src/fixtures/fixtures.tsx","./src/settle-signal.ts","./src/response-impl.ts","./src/types.ts","./src/respond-with.ts","./src/fetch/types.ts","./src/fetch/fetch-request-matches-mock.ts","./src/mock-requester.ts","./src/fetch/mock-fetch.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/clone.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/entries.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/errors.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/errors-from-error.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/get-kind-from-error.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/get-original-stack-from-error.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/keys.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/types.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/kind-error.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/safe-stringify.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/truncate-middle.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/values.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/secrets/secret.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/index.d.ts","../wonder-blocks-data/dist/util/types.d.ts","../wonder-blocks-data/dist/util/hydration-cache-api.d.ts","../wonder-blocks-data/dist/util/request-api.d.ts","../wonder-blocks-data/dist/util/purge-caches.d.ts","../wonder-blocks-data/dist/components/track-data.d.ts","../wonder-blocks-data/dist/hooks/use-hydratable-effect.d.ts","../wonder-blocks-data/dist/components/data.d.ts","../wonder-blocks-data/dist/components/intercept-requests.d.ts","../wonder-blocks-data/dist/util/data-error.d.ts","../wonder-blocks-data/dist/hooks/use-server-effect.d.ts","../wonder-blocks-data/dist/hooks/use-cached-effect.d.ts","../wonder-blocks-data/dist/hooks/use-shared-cache.d.ts","../wonder-blocks-data/dist/util/scoped-in-memory-cache.d.ts","../wonder-blocks-data/dist/util/serializable-in-memory-cache.d.ts","../wonder-blocks-data/dist/util/status.d.ts","../wonder-blocks-data/dist/util/gql-types.d.ts","../wonder-blocks-data/dist/util/get-gql-request-id.d.ts","../wonder-blocks-data/dist/util/get-gql-data-from-response.d.ts","../wonder-blocks-data/dist/util/graphql-types.d.ts","../wonder-blocks-data/dist/util/graphql-document-node-parser.d.ts","../wonder-blocks-data/dist/util/to-gql-operation.d.ts","../wonder-blocks-data/dist/components/gql-router.d.ts","../wonder-blocks-data/dist/hooks/use-gql.d.ts","../wonder-blocks-data/dist/util/gql-error.d.ts","../wonder-blocks-data/dist/index.d.ts","./src/gql/types.ts","./src/gql/gql-request-matches-mock.ts","./src/gql/mock-gql-fetch.ts","./src/settle-controller.ts","./src/harness/types.ts","./src/harness/adapters/css.tsx","./src/harness/adapters/data.tsx","./src/harness/adapters/portal.tsx","../../node_modules/@types/history/DOMUtils.d.ts","../../node_modules/@types/history/createBrowserHistory.d.ts","../../node_modules/@types/history/createHashHistory.d.ts","../../node_modules/@types/history/createMemoryHistory.d.ts","../../node_modules/@types/history/LocationUtils.d.ts","../../node_modules/@types/history/PathUtils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","./src/harness/adapters/router.tsx","../wonder-blocks-core/dist/util/aria-types.d.ts","../wonder-blocks-core/dist/util/types.propsfor.d.ts","../wonder-blocks-core/dist/util/types.d.ts","../wonder-blocks-core/dist/components/text.d.ts","../wonder-blocks-core/dist/components/view.d.ts","../wonder-blocks-core/dist/components/render-state-context.d.ts","../wonder-blocks-core/dist/components/with-ssr-placeholder.d.ts","../wonder-blocks-core/dist/components/id-provider.d.ts","../wonder-blocks-core/dist/components/unique-id-provider.d.ts","../wonder-blocks-core/dist/util/add-style.d.ts","../wonder-blocks-core/dist/util/server.d.ts","../wonder-blocks-core/dist/hooks/use-unique-id.d.ts","../wonder-blocks-core/dist/hooks/use-force-update.d.ts","../wonder-blocks-core/dist/hooks/use-is-mounted.d.ts","../wonder-blocks-core/dist/hooks/use-latest-ref.d.ts","../wonder-blocks-core/dist/hooks/use-on-mount-effect.d.ts","../wonder-blocks-core/dist/hooks/use-online.d.ts","../wonder-blocks-core/dist/hooks/use-render-state.d.ts","../wonder-blocks-core/dist/components/render-state-root.d.ts","../wonder-blocks-core/dist/index.d.ts","./src/harness/adapters/ssr.tsx","./src/harness/adapters/adapters.ts","./src/harness/render-adapters.tsx","./src/harness/make-test-harness.tsx","./src/harness/make-hook-harness.tsx","./src/harness/hook-harness.ts","./src/harness/test-harness.ts","./src/index.ts","./src/__tests__/mock-requester.test.ts","./src/__tests__/respond-with.test.ts","./src/__tests__/settle-controller.test.ts","./src/__tests__/settle-signal.test.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","./src/fetch/__tests__/fetch-request-matches-mock.test.ts","./src/fetch/__tests__/mock-fetch.test.ts","./src/fixtures/fixtures.basic.stories.tsx","./src/fixtures/fixtures.defaultwrapper.stories.tsx","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@testing-library/dom/types/matches.d.ts","../../node_modules/@testing-library/dom/types/wait-for.d.ts","../../node_modules/@testing-library/dom/types/query-helpers.d.ts","../../node_modules/@testing-library/dom/types/queries.d.ts","../../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../../node_modules/@testing-library/dom/types/screen.d.ts","../../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../node_modules/@testing-library/dom/types/get-node-text.d.ts","../../node_modules/@testing-library/dom/types/events.d.ts","../../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../node_modules/@testing-library/dom/types/role-helpers.d.ts","../../node_modules/@testing-library/dom/types/config.d.ts","../../node_modules/@testing-library/dom/types/suggestions.d.ts","../../node_modules/@testing-library/dom/types/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/test-utils/index.d.ts","../../node_modules/@testing-library/react/types/index.d.ts","./src/fixtures/__tests__/fixtures.test.tsx","./src/gql/__tests__/gql-request-matches-mock.test.ts","./src/gql/__tests__/mock-gql-fetch.test.tsx","./src/gql/__tests__/wb-data-integration.test.tsx","../../node_modules/@khanacademy/wonder-stuff-testing/dist/jest/isolate-modules.d.ts","../../node_modules/@khanacademy/wonder-stuff-testing/dist/jest/wait.d.ts","../../node_modules/@khanacademy/wonder-stuff-testing/dist/jest/index.d.ts","../../node_modules/@khanacademy/wonder-stuff-testing/dist/data-factory-for.d.ts","../../node_modules/@khanacademy/wonder-stuff-testing/dist/index.d.ts","./src/harness/__tests__/hook-harness.test.ts","./src/harness/__tests__/make-hook-harness.test.tsx","./src/harness/__tests__/make-test-harness.test.tsx","./src/harness/__tests__/render-adapters.test.tsx","./src/harness/__tests__/test-harness.test.ts","./src/harness/__tests__/types.typestest.tsx","./src/harness/adapters/__tests__/css.test.tsx","./src/harness/adapters/__tests__/data.test.tsx","./src/harness/adapters/__tests__/portal.test.tsx","./src/harness/adapters/__tests__/router.test.tsx","./src/harness/adapters/__tests__/ssr.test.tsx","./types/aphrodite.d.ts","./types/matchers.d.ts","./types/utility.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/concat-stream/index.d.ts","../../node_modules/@types/cross-spawn/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/detect-port/index.d.ts","../../node_modules/@types/doctrine/index.d.ts","../../node_modules/@types/ejs/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/escodegen/index.d.ts","../../node_modules/@types/estree-jsx/index.d.ts","../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/mime/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/find-cache-dir/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/is-ci/node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/is-empty/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/pretty-format/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/nlcst/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-window/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/supports-color/index.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"2dfbb27de6bf0db1018122b054d26cf1fc47bc1979d096aec101b08a42c63b13",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"51da54ddc920585f6f7ad98b6ba9916dfbb42ce4b8a872fd4f9a4cc93491f404","affectsGlobalScope":true},"a01fdf7c8198a03dbb410266ca31de057ccf48317f4d3bf9d090fa5998798ebf","2d2f047b45f1c7d85eef592812385410bb486af077144ee7d954c055f5a9402b",{"version":"593cded80d2909dcb100cdfff06c4dea70c4acc94c1a3841d54cd988b18e058c","signature":"200a615540f29258b76b334b8246e899539beb5581bd8ee6e3448edd93c05862"},{"version":"fcaa4a493fb917f6df2e96cb3e6510cb218e570f64fda76eda26bc77e8ec1192","signature":"f38142011c0b2d856bab54393b43216053d1256e72f837113e0dde4f76442324"},{"version":"07674b45cc6d5387a82d201a9e61f7602015e6914c09b39bb2362464a196f7d3","signature":"85051413b965f78885e23062e31aa01f978046fc1bb576a0cd8d316a20b7963a"},{"version":"2b402683a630d5fe59dcd616c216dd750d288cfebcbbc34ce0cae98efc89f491","signature":"4e4c4fd11584b10e0d7b7af5480cf4d08907a77367c971e3eab66658cf589fa8"},{"version":"ac6c612afdfdeff19d75c88ea2745e2de12c1209bd7065b6f3fbef6d141446d5","signature":"70e84fb85b6389dd2d2594b18987fb13c44c01533fd785c3cf94f2eca08fa321"},{"version":"e9759a1254fe59a39c7b269f6bdb616ceedc327807c60441f1935b6ddf774adf","signature":"228bd0353f585c96f6e6bc89692c5c09476e73a7d3fd73bc80b9912347b0e013"},{"version":"71c44cf6f5a075ff98c75c3f42f9ec8da6090069c607722f072b184aba73236c","signature":"132ebf96a880d1917da03619bd23fed7c89260ed43093c3ed49046e803747767"},{"version":"7d9f9cedf1d597b1f9e2a7516302b0a8d5357c63d88ad55c8c821e29c2689dc8","signature":"58912fce962f9be7eb373a43978ee5d0ddd9fea0c22bb29481ccd2f9415901c4"},{"version":"8f54991b8b870c3b5179f1044558177215d42ace6ba828a367558454a2bd6c88","signature":"01ec6ca76a9d8eb9f53697c30185c34f673702f67ec00e4e82d94a09c9f962cb"},{"version":"9a308fee0aee25244069fdfa76ed65f7b8d0889ccc6da6303743a4c24ca5efbd","signature":"ee5cd53db14edc37a77035f21ddc386ef2409945ca97c37391ad2f1009498a39"},"6304649762698999bfad27a74a30bfce53fbf72922f48a85199e51f722bad413","876f754b9f5b5743997215726693660487af49f333f888456c50a599980935e0","c9ba22f4c9d081d1b90bf59b99d8d9e4d220f41aeb47a153f137e5189b0bc76d","0c8f708bcff149ab03fc5552c628a3fe307797e5233fb15625d67a5254294025","ddaa076d642cda52990e7ac3f0d4e77988e48a5ef8364ab092a8e0d4e2b0e56c","6f995f0051cef664462da3abde1cfaf8ac458b2c591c4bd309d6769c142f1777","46bba3ce6b32673257d0db0056f30e92200bd6f550f190d13bf3ba71557061e0","d6e0a751111e99d7cf5239b8ebc278e9bfa4a64447012bdeac04fee58453553d","aab3feec73ec8dc10a95dcff051cf36c1b3687ca72a576a1dd8f0ced1896a2ac","bcc1c7f9a00220d60d6c7d89b7d52286e3744a5a0749d236348bc9380898cb90","f65c3223aff15c3deb2023e8d3c3557fcf7f3a497b64cfa16a75b18b7e7f6555","7ca8408e005a688b33b6c9d99e07242f65590bd1347abbae2436787f21116798","64bbd0021408f87e2077556805f6ffc4d89881e6e451978b11f0cf0994094b16","49e5f387f7ad4ff64cc849dc6e0275df14877d3be2b1dd23bf203b6fc1b5b36c","6c47805d280f04b6f0f121769f9d8ce44d093f0ff2bffa0cff9d42f81fd40b0b","fd3be770987132c42a30247bf0d956f83df0697fa9a6499bbe2500baa8259304","b59c52322cf5b0a14a4a1cde9ecadf809f4cfdc9353f0d150e83fc2a64ddb6e5","5fa26d809d4df84462466748f19e7555277d220bf1445b5a11637c1c4cd5371d","6d0204f5ba6b1c87ff9603cda9fe781fdf1a1e95d21d7743c580358efd149447","14ee3643c2f0a55b5e62b531a3fa1e3623ce77c3ab2ac516b1c257f219bf647f","e6a0b9fb46804147f12602cb9fa1dfe4adca77c388a9e34b1a7d0c2aeb195a50","e5ee90e1eacee39423eb6b108dd08e6e595b3f968d65fc203756d058bafe30bb","61c7fe392393431ac9fb67793867724295e5ad44cee6d48fd0947f743bdd9b1a","45e875e40ed8093362afba19d4763d5fa0aa07fdf9b06e885358abfd2de36330","cfd1694488bc9b72540e169f83257fc9b7d4150100a9d429d27e989f9fcc903e","9d5af219debc9148405611ad45d719ae078e946ccd0dfd0fcf87e60726f9e624","a0c8e206edf12d0005d1e0770fbcd9f7c66e7080d7930d156621e7c2f603d4bb","87f99ae22150754d29e5b08b0ca434621fd189ca4a3142bcd264c1699e5b4f57","a658ce87b913d15aad01c85a76b3eeba24ae581ee6438c1ee472d99a79367841","2cec61915f7669126298ff9b8b62c69a86450439b4efe370faee72d2aa9160cd","cb3c5d3ff94dc40b12bee97758831b346c9db9b6b2d1f76a8c9a9b02883a97e0","f50291aa3ae4098090480537cc4994c76e781629511e458205734214804b4796","859e6c8e3cbc84f545c21cf3660297a75961f9a5b4567d645bdb2ec89785ff99","a95ea2462244c5b5584f7e52d974d2cd184336e39aa62ce98001a730edf0f73f","c6df11085a9faf89ed846bb4513071c94312583f7df4a5be6aafc96da25c3027","10b2878e391545247ba90ad11c61e324fcf133fd8eb2f42f1122ec2c150d47bc","0b6eb37719fa3a342d2e86f7afff19dcd5d20b1ec9328686b7e60f024efd6437","78a4eb1dd8f938e399ada62503831fe3aa486ea378b91e726c9216166b09c409","26643326c65042186e4c72857eaf349a29ef14ffd90ca9e66ac4df447647d4ad",{"version":"0de8f378a294328e4a58e3da4a7587954188d7de7fe57dbdcbe8124aae968830","signature":"be161523b05a8b59198a264ef526f89c307f8c9f1ac6a1af4bc164d6da813350"},{"version":"9bd363dd3228d806474b329ea77df05629120ca1eb299a5e3dbd9eb01966297e","signature":"51dc98c2d8e3b4b69e7dce526a7013479e51501335edb63b1349f84cb86d47ab"},{"version":"37b6a9d686696b1dc24cace1764b255c3bda528555ec06eb8a017fef81279937","signature":"0c151deac25e886fc969a8629febeaca24c1728e9a7077665e96213ec97cde96"},{"version":"2d8315a0ac094df82a1e9f666a317386f6edd2400852dbdc8ead413dfdbfb007","signature":"cf6c4f99118a2ca38d7c6ca191a619ebd5a443014503a8a28b02d2ad0f4d4aec"},{"version":"fb8cc1b7e723d2887f1aa727627ad15e23fe4efa29e8e9dcebc0b64dde9a7572","signature":"da89ed097f7d69f3685d7fffda94a8157310400f6c0b40b23b025e820c552129"},{"version":"e177714c29723a9aa5ada9936e14f6a88d6ccf6fb5ceab3cddf2579852b48e83","signature":"3cf51621d745b17af26dda92d20f67ff3e8effad79966393fc2476982577fed6"},{"version":"9449622d40fc8c4ac59e3467e5aea212c83160aaedf83da08a824d8210bd2b29","signature":"c95fe8cb5ab7267492c11ad0cb4efd5fd822090e5e16794f43b8778e4cf85d0a"},{"version":"18bca068c0d60738754d69e0effd25d0e33e2f47cf23d9296bba98443896e64b","signature":"a3be723c4c0def9dc74cb445e7813e986a0625b258cf0957752836a89be0cddc"},{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e",{"version":"957e334206d0b56846d1f684368b7b6e7e3f773c8cc8c857a3a62b9d8582d289","signature":"4da562c0ce0317d1e551d7e227e45e52e8a9e7f4482ab06f784691a54dc49626"},"95f67633f753545b50294e21b65e412641ce57210c140b08cb96d0e5661bdb26","2dc223bbca44faa55c75c3c958763d9b13512750b30e9fc8a0190805f3d78008","62f9b9394495a13fbd44cead7476b38d4b0dac394cb48c9e4c4a0126710cf64a","9b16d7991ee5c23ce7ae1f0c41a737338a7f6e8562386200732a597743cb4277","6da96cdc0d85dd0ea129932889d7fa0b24dc69d313ae85d7ccbf1b26f7b6a027","5683452b6b350b64c0cd31fd384ac04b8a277de34abf625dbfde158e58bf543d","35f9da518991b2db4e4f4740bcb0a0b1574fe34ba4c8f42eb9e20d34ff5ff156","6055f104386c7d62778355c2c8f3fd9a37c29c340cc3c4cbf0da23b1a2bce43d","1ec2168acad8107b990e9c19099c198f36da657f2f60662101a2234bc8afc18c","b774135aab37d47093fb4acf73c33ccf95374542b61d632656fea625d5a772f9","15b4dcbf307452ab56bf665fc4fadeea11a8201ed23098cfb9bce145fccb7139","ee0fccc1e97251e3f3aa7d4a0682b2a28bd0bbf6fae3e169368eb01d74c4e4ec","e7391aed3af92e257fc4ea6784f84aa931026a92cf36472c1e89f4279858552c","f7147de5c8f9cb1143c3b43630f734fff707f1535addabb592f8e560209dd6a7","2a63923fa6a043add1d08c5e594bbcd60ab1c44adcad05f12ccdaf2059eec642","ff1881c58824d49ca3442d9561c3aef2767fdb1c2b9f4b251063f4c2d5e03fc4","055e664e1288198c705162c24c89591e8f88c91a89821c5c528256b025779b26","398155e58de7e65e21c70d5d71c1fddb922681cd50477e6b62b0be5fa9bcf847","ff06ba1844b1bfdb69f04f6303109c3c17b16633e0594f2414306abb64271630","9b9f299c3ce9ca16d6137ffd251221ca483b55ac1b1d211fc0dcc3a07bb91d21",{"version":"460a4983068bad441a2079694c572396c6b2acac78530ccc3375efb2b7e8d7cf","signature":"e6652ae180a8729b06c7d1b1a6f8826601211419b70847f426021c1f171c0bab"},{"version":"5d8f9c87f5f9826df29f8e1c8d64eef7d19cf752f0649196b53c90b62acd67ee","signature":"3fb226bbe3fd4ec26c4f5fe9cc4f2c22d07c688f746f5c1deacc2229f1b59b42"},{"version":"91af73b1cee1f65017b4721aa0c4a1eaaa4f68bbd6005f678adb61ebfde21706","signature":"5ce5e5f496c4eef5ab1f0c4e507401094b745b19607f01cede745a4fd23e07f6"},{"version":"470631f5107c359115f58212ed25a53d55e604a167c5b42bae4cf65d011edbe0","signature":"043ac72efb82b34d2f9341409b04267047c27b8a8a2b2599989fc07cf65f36b0"},{"version":"06a81301d67ce00c39c170d06df66909f8512d4747985a709e6cc978df224a48","signature":"7abc2ec44c1c1fe6b7c17ece5f23205e8c5016e12325f3e04321302eabbf45cb"},{"version":"8ca08674daf92a80a66401622d6f5674a7d8a873a28ea74394620263ad67aaa6","signature":"e9664eb8ec8564e88d067d1fe05fdd632ff02c2d197bb97b74bd1f845cf5be7e"},{"version":"506e6db185f82c2cca01d7a3f0b299995ccb607dfdabb73d580e9c9034fd6f90","signature":"e838c1d7a20aa584c2ba376cdc38d783ac16622dd8e373be4ecc64f01eda369a"},{"version":"cc6827e6af27e04907a16a56d9d44bcf4bdad34ccd3a25a19bdd8003bb0b0c1c","signature":"27584f8894545c88c3d3f42c9cb4adfe8c434f1261c71a07e95bd09d83fc1edf"},{"version":"7b3ceaa1ea2807849804daaa31068807313f4d8309a589c3e05563594aecaaa4","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"aa089a34f038ca3404e341ec7ef64ebca5aedfbc9ba66949f352cc2019a4b41f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6f02fe2587cd618422ebdfe174b3c8a808ae9d2061b565cf2cc3752a011395c7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3c9dbb913c94bb3f1554b0d825f1baeac28d356aa891a71e8b243f60b076c905","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568",{"version":"f7847eed0f11f533931e8a86a8d6a0204dde837eb6fdf75c80ee9331e7b169fd","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"451cd892ed62ce494edfc934d4a2aabed494410f5f945f925a098bd59d60fd41","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3fc680d9c902a2aeb44de4a1360e8ef97418b7572fec36ad8291ee3fe43de330","signature":"b013a9fff7a44a1440fa7efc351ba471de906874dcc45777ddc45a1c05d33bb1"},{"version":"06a8aae8031432812b63552c2ffba8a6da7e77b1e0bbcfc7c51166c383cb958b","signature":"a7e13ad948ea26884dc38ece626bfa093313b527c045199e068790e5dcf9a535"},"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","f70bc756d933cc38dc603331a4b5c8dee89e1e1fb956cfb7a6e04ebb4c008091","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","fbc350d1cb7543cb75fdd5f3895ab9ac0322268e1bd6a43417565786044424f3","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","cb3aaf306b5ff2ec718359e2e2244263c0b364c35759b1467c16caa113ccb849","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","a3ce619711ff1bcdaaf4b5187d1e3f84e76064909a7c7ecb2e2f404f145b7b5c","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","b567296d1820a1e50b6522c99a4f272c70eb2cba690da6e64a25635b70b1383f","b72fe4260471b06163a05df5228c09b76472b09ea315b7a2df52343181fe906f","852babd1fbe53723547566ba74312e48f9ecd05241a9266292e7058c34016ce8",{"version":"09781049fd2f9dd784052115fb7349d30c8fcaed241d8e5771179d259647a560","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"31a222fd4bb33fb0d937836902dee33d61b95a04a3c61ca5f1eea42425710e5e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2425f53babdbc63be7b2f573a606a185ec53f3ea05c6d7e2a20e7744f0b74338","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"af9133b3045c9b529dc061f07bb453aa9c452ae7aad8e9e9401df5fe1ab2bb71","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"b5794f89326fa85a7e51809e2de5dc54fd7a6479fb452063fe2313ebec7f9783","77eceb4e898664b1e9d7a0194503c9e73aa88f3dc6fbb59a784f4b46ed0c9208","96ebb6230d31b21acd72d3ba70ae85d6cdec19bcb2046cbe44ee96cdaa026f62","b501ad7b5c7a7458540484fe50a009c163ae8f012c4e6f802676ddae9395bab6","653ad5ff42050e5225fd2739d98b728f39541d9aff27bcd90f734c96faa0a361",{"version":"b7fa6653ba72aa1c083e5976c71921f7f1789948bd522a9f5ce73e09d5afb3b5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"b59b43140dc6bb9208add2552d30df738837ae965d62051870fd6372904506f7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"e42be9f4c954acb06bc41fd5ba2bbead52300e4d31456a550e324b46b0f969a5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"0e481c415607067f8643a1931f41564d230836fd815059249856009ae0d44b88","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cd4033b4fcef9390c656e4f8dc6dd8f8942e809e8e1fdb50ad7319135ccc8239","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"5b11b6b4c0d8982184d3aff4705dbc8746d1343632768264ea186db9e8b6980e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"8efce7fe952e57037e64ce96d63f92ef2fbbdf680645fdd7afb0d40b9d94ecc1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"95d61ca44e81f95a38d990dfaf30f02cdc455cd65a87eb4e2194ed41ab17495f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"fb7a41a3f389ea887c5d4f0274fbb4e71c6d92acb9ece95b633ddd11335105db","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f3df95a65bfcb3f1582128eee79be1cf621314b4e408237076396c63461be4da","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"da934d771d93412702aa472c3bc9535d33251ec4829d043390f8464632030cb1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"e5eded91d451a61471ff30c11e4df908f7eb1464689977f4702a562489db2c86",{"version":"9be348abf5d43091876a86f9acf23927a240915f8fc6d51155dbe5bdb69ef229","affectsGlobalScope":true},{"version":"0edf50909110994834718a7582b9ceedf20b14aa9fde0351eb2ac2cf5f430feb","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","a20fc1fcd9cd7c2b79d5f00d14802c1d58c3848e09ee4f84b350591af88b7636","19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","0bcda522a4bb74c79e11a2c932db88eaca087a6fb11eb3fda4aaa4d655b1783e","5e3a55837aa1f42af2d2334c9b750f59f5f50a2205471875f5dd6aadc3e49ddb","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","4b4c4c74c41b52cada66c85638633d2b0fe7c43445daf877cfddb310d3f5e998","febcc45f9517827496659c229a21b058831eef4cf9b71b77fd9a364ae12c3b9e","de8877483ce1e67bced3ad1f4ac877fd5066f8465ab6a9e8b716662d727553e5",{"version":"3f547f989aa9c12dc888ae25c4afc076eb442f681ba17f50924642fe29c01da0","affectsGlobalScope":true},"9dffc5c0859e5aeba5e40b079d2f5e8047bdff91d0b3477d77b6fb66ee76c99d","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","f7a9cb83c8fbc081a8b605880d191e0d0527cde2c1b2b2b623beca8f0203a2cd","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","19f1159e1fa24300e2eaf72cb53f0815f5879ec53cad3c606802f0c55f0917e9","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","ac295e0d29ca135d7dca2069a6e57943ed18800754dbe8fcb3974fb9ce497c3c","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","6a61697f65beb341884485c695894ee1876a45c1a7190d76cb4a57a679c9d5b8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","d45d40831ccbd547e3f4ae8f326420b9e454dd27fa970f417c8e94a23e93db29","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"5bc4bb5796ce660d9869477983aac87734e19fecd1ad60fb0b13ffe1f1a450ed","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","bb5c385d6290f1ad2da7576e186810f23dce6d6bc7fb38ad565a4eb8cfed3541","6571f33cd3c23ee70fb48839c9a7486381cd3f439e17d97d10fc908e41468052","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","1b23c2aae14c17f361f6fcef69be7a298f47c27724c9a1f891ea52eeea0a9f7f","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","105fa3d1b286795f9ac1b82f5a737db303dfe65ebc9830c1938a2bbe538a861f",{"version":"40bbeaccf39d6ad00da30e96553f0c4aa1b8a87535393c7fdf939170b639c95d","affectsGlobalScope":true},"e65fca93c26b09681d33dad7b3af32ae42bf0d114d859671ffed30a92691439c","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./dist","rootDir":"./src","skipDefaultLibCheck":true,"skipLibCheck":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[199,259,313,314,315],[199,313,314,315],[64,65,66,67,68,69,70,71,72,73,74,75,76,199,313,314,315],[71,199,313,314,315],[199,240,241,313,314,315],[199,238,239,313,314,315],[52,199,313,314,315],[199,220,313,314,315],[199,218,313,314,315],[199,215,216,217,218,219,222,223,224,225,226,227,228,229,313,314,315],[199,214,313,314,315],[199,221,313,314,315],[199,215,216,217,313,314,315],[199,215,216,313,314,315],[199,218,219,221,313,314,315],[199,216,313,314,315],[199,230,231,232,313,314,315],[199,257,313,314,315],[199,259,260,261,262,263,313,314,315],[199,259,261,313,314,315],[172,199,206,265,313,314,315],[187,199,206,313,314,315],[172,199,206,313,314,315],[158,199,206,313,314,315],[199,270,313,314,315],[169,172,199,206,279,280,281,313,314,315],[199,266,281,282,286,313,314,315],[169,170,199,206,289,313,314,315],[170,199,206,313,314,315],[199,292,313,314,315],[117,199,313,314,315],[111,117,199,313,314,315],[112,113,114,115,116,199,313,314,315],[199,295,313,314,315],[199,298,313,314,315],[199,299,313,314,315],[199,305,308,313,314,315],[169,199,201,206,311,312,314,315],[199,313,314],[199,313,315],[199,313,314,315,318,320,321,322,323,324,325,326,327,328,329,330],[199,313,314,315,318,319,321,322,323,324,325,326,327,328,329,330],[199,313,314,315,319,320,321,322,323,324,325,326,327,328,329,330],[199,313,314,315,318,319,320,322,323,324,325,326,327,328,329,330],[199,313,314,315,318,319,320,321,323,324,325,326,327,328,329,330],[199,313,314,315,318,319,320,321,322,324,325,326,327,328,329,330],[199,313,314,315,318,319,320,321,322,323,325,326,327,328,329,330],[199,313,314,315,318,319,320,321,322,323,324,326,327,328,329,330],[199,313,314,315,318,319,320,321,322,323,324,325,327,328,329,330],[199,313,314,315,318,319,320,321,322,323,324,325,326,328,329,330],[199,313,314,315,318,319,320,321,322,323,324,325,326,327,329,330],[199,313,314,315,318,319,320,321,322,323,324,325,326,327,328,330],[199,313,314,315,318,319,320,321,322,323,324,325,326,327,328,329],[199,313,314,315,332,333],[199,284,313,314,315],[199,283,313,314,315],[172,198,199,206,207,208,313,314,315],[172,187,199,206,313,314,315],[153,199,313,314,315],[156,199,313,314,315],[157,162,190,199,313,314,315],[158,169,170,177,187,198,199,313,314,315],[158,159,169,177,199,313,314,315],[160,199,313,314,315],[161,162,170,178,199,313,314,315],[162,187,195,199,313,314,315],[163,165,169,177,199,313,314,315],[164,199,313,314,315],[165,166,199,313,314,315],[169,199,313,314,315],[167,169,199,313,314,315],[169,170,171,187,198,199,313,314,315],[169,170,171,184,187,190,199,313,314,315],[199,203,313,314,315],[165,172,177,187,198,199,313,314,315],[169,170,172,173,177,187,195,198,199,313,314,315],[172,174,187,195,198,199,313,314,315],[153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,313,314,315],[169,175,199,313,314,315],[176,198,199,313,314,315],[165,169,177,187,199,313,314,315],[178,199,313,314,315],[179,199,313,314,315],[156,180,199,313,314,315],[181,197,199,203,313,314,315],[182,199,313,314,315],[183,199,313,314,315],[169,184,185,199,313,314,315],[184,186,199,201,313,314,315],[157,169,187,188,189,190,199,313,314,315],[157,187,189,199,313,314,315],[187,188,199,313,314,315],[190,199,313,314,315],[191,199,313,314,315],[169,193,194,199,313,314,315],[193,194,199,313,314,315],[162,177,187,195,199,313,314,315],[196,199,313,314,315],[177,197,199,313,314,315],[157,172,183,198,199,313,314,315],[162,199,313,314,315],[187,199,200,313,314,315],[199,201,313,314,315],[199,202,313,314,315],[157,162,169,171,180,187,198,199,201,203,313,314,315],[187,199,204,313,314,315],[199,310,313,314,315],[199,311,313,314,315],[51,199,313,314,315],[51,199,232,313,314,315],[51,117,118,199,313,314,315],[51,117,199,313,314,315],[47,48,49,50,199,313,314,315],[199,313,314,315,344,383],[199,313,314,315,344,368,383],[199,313,314,315,383],[199,313,314,315,344],[199,313,314,315,344,369,383],[199,313,314,315,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382],[199,313,314,315,369,383],[170,187,199,206,278,313,314,315],[172,199,206,284,285,313,314,315],[199,309,313,314,315],[199,313,314,315,387],[199,301,307,313,314,315],[199,305,313,314,315],[199,302,306,313,314,315],[199,304,313,314,315],[199,303,313,314,315],[51,123,199,313,314,315],[51,121,123,199,313,314,315],[51,126,199,313,314,315],[126,199,313,314,315],[123,199,313,314,315],[123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,199,313,314,315],[51,121,122,199,254,313,314,315],[51,78,83,199,313,314,315],[51,93,199,313,314,315],[51,78,199,313,314,315],[78,199,313,314,315],[93,199,313,314,315],[78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,199,313,314,315],[77,78,199,313,314,315],[96,199,313,314,315],[78,90,199,313,314,315],[93,96,199,313,314,315],[77,199,313,314,315],[59,62,199,313,314,315],[59,106,199,313,314,315],[56,106,199,313,314,315],[56,199,313,314,315],[61,199,209,313,314,315],[59,63,199,209,313,314,315],[60,199,313,314,315],[60,61,62,199,313,314,315],[59,199,313,314,315],[51,53,55,199,233,313,314,315],[51,148,199,313,314,315],[51,53,54,199,313,314,315],[104,199,313,314,315],[51,59,102,105,199,233,313,314,315],[102,103,199,313,314,315],[62,103,104,199,313,314,315],[58,59,102,199,313,314,315],[142,145,146,199,242,313,314,315],[51,144,145,199,233,313,314,315],[51,119,142,143,144,199,233,313,314,315],[51,107,143,199,313,314,315],[142,144,146,147,199,242,313,314,315],[51,107,199,313,314,315],[51,108,199,233,313,314,315],[51,102,109,199,233,313,314,315],[51,110,199,233,313,314,315],[51,119,120,199,233,313,314,315],[51,140,141,199,233,313,314,315],[107,108,109,110,120,141,199,313,314,315],[51,107,199,254,313,314,315],[51,102,107,199,313,314,315],[51,107,117,119,199,313,314,315],[51,77,107,140,199,313,314,315],[51,107,142,145,199,313,314,315],[51,107,144,199,313,314,315],[142,144,199,313,314,315],[54,55,59,60,63,103,105,106,107,142,144,145,146,147,199,313,314,315],[58,59,199,313,314,315],[56,57,58,199,313,314,315],[60],[59],[51],[51,54],[102,103],[103],[58,59,102],[102,107,117,254],[107,254],[51,102,107],[107],[51,107,117,119],[51,107,142],[51,107],[51,102,107,117,254],[54,55,59,60,63,103,105,106,107,142,144,145,146,147],[58],[56,58],[56]],"referencedMap":[[261,1],[259,2],[301,2],[64,2],[65,2],[67,2],[66,2],[68,2],[69,2],[77,3],[70,2],[72,4],[73,2],[76,4],[74,2],[71,2],[75,2],[241,2],[242,5],[240,6],[238,2],[239,2],[53,7],[221,8],[220,2],[228,2],[225,2],[224,2],[219,9],[230,10],[215,11],[226,12],[218,13],[217,14],[227,2],[222,15],[229,2],[223,16],[216,2],[233,17],[258,18],[214,2],[264,19],[260,1],[262,20],[263,1],[266,21],[267,2],[268,22],[265,23],[269,24],[271,25],[272,2],[273,2],[274,2],[275,2],[276,2],[277,18],[257,2],[282,26],[287,27],[288,2],[290,28],[291,29],[293,30],[111,2],[115,31],[116,31],[112,32],[113,32],[114,32],[117,33],[294,2],[285,2],[296,34],[295,2],[297,2],[298,2],[299,35],[300,36],[309,37],[313,38],[315,39],[314,40],[316,2],[317,2],[319,41],[320,42],[318,43],[321,44],[322,45],[323,46],[324,47],[325,48],[326,49],[327,50],[328,51],[329,52],[330,53],[331,30],[333,54],[332,2],[334,2],[283,55],[284,56],[289,2],[335,2],[270,2],[336,30],[208,2],[209,57],[207,58],[153,59],[154,59],[156,60],[157,61],[158,62],[159,63],[160,64],[161,65],[162,66],[163,67],[164,68],[165,69],[166,69],[168,70],[167,71],[169,70],[170,72],[171,73],[155,74],[205,2],[172,75],[173,76],[174,77],[206,78],[175,79],[176,80],[177,81],[178,82],[179,83],[180,84],[181,85],[182,86],[183,87],[184,88],[185,88],[186,89],[187,90],[189,91],[188,92],[190,93],[191,94],[192,2],[193,95],[194,96],[195,97],[196,98],[197,99],[198,100],[199,101],[200,102],[201,103],[202,104],[203,105],[204,106],[337,2],[311,107],[310,108],[338,2],[339,2],[49,2],[281,2],[280,2],[231,109],[232,110],[119,111],[118,112],[340,109],[341,109],[47,2],[51,113],[342,2],[343,2],[50,2],[368,114],[369,115],[344,116],[347,116],[366,114],[367,114],[357,114],[356,117],[354,114],[349,114],[362,114],[360,114],[364,114],[348,114],[361,114],[365,114],[350,114],[351,114],[363,114],[345,114],[352,114],[353,114],[355,114],[359,114],[370,118],[358,114],[346,114],[383,119],[382,2],[377,118],[379,120],[378,118],[371,118],[372,118],[374,118],[376,118],[380,120],[381,120],[373,120],[375,120],[279,121],[278,2],[286,122],[384,2],[385,2],[386,123],[312,2],[292,2],[387,2],[388,124],[302,2],[48,2],[308,125],[306,126],[307,127],[305,128],[304,129],[303,2],[52,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[128,130],[126,109],[139,109],[124,131],[129,130],[125,130],[127,132],[133,2],[134,2],[135,109],[136,2],[137,2],[138,133],[132,134],[140,135],[130,130],[121,2],[131,2],[123,136],[122,109],[84,137],[99,138],[85,139],[82,109],[88,140],[100,141],[83,140],[87,140],[89,140],[102,142],[86,143],[95,2],[94,141],[101,143],[93,2],[97,144],[96,2],[79,140],[81,2],[80,140],[90,140],[91,145],[92,140],[98,146],[78,147],[149,148],[150,149],[151,150],[152,151],[210,152],[211,153],[61,154],[63,155],[60,156],[234,157],[212,158],[213,158],[55,159],[54,109],[235,160],[236,161],[237,161],[104,162],[105,163],[103,164],[243,165],[244,166],[245,167],[246,168],[247,169],[248,170],[249,171],[250,172],[251,173],[252,174],[253,175],[142,176],[108,177],[109,178],[110,170],[120,179],[141,180],[146,181],[145,182],[144,168],[143,170],[147,183],[107,109],[148,184],[62,185],[59,186],[57,2],[106,151],[56,2],[58,156],[254,109],[255,2],[256,2]],"exportedModulesMap":[[261,1],[259,2],[301,2],[64,2],[65,2],[67,2],[66,2],[68,2],[69,2],[77,3],[70,2],[72,4],[73,2],[76,4],[74,2],[71,2],[75,2],[241,2],[242,5],[240,6],[238,2],[239,2],[53,7],[221,8],[220,2],[228,2],[225,2],[224,2],[219,9],[230,10],[215,11],[226,12],[218,13],[217,14],[227,2],[222,15],[229,2],[223,16],[216,2],[233,17],[258,18],[214,2],[264,19],[260,1],[262,20],[263,1],[266,21],[267,2],[268,22],[265,23],[269,24],[271,25],[272,2],[273,2],[274,2],[275,2],[276,2],[277,18],[257,2],[282,26],[287,27],[288,2],[290,28],[291,29],[293,30],[111,2],[115,31],[116,31],[112,32],[113,32],[114,32],[117,33],[294,2],[285,2],[296,34],[295,2],[297,2],[298,2],[299,35],[300,36],[309,37],[313,38],[315,39],[314,40],[316,2],[317,2],[319,41],[320,42],[318,43],[321,44],[322,45],[323,46],[324,47],[325,48],[326,49],[327,50],[328,51],[329,52],[330,53],[331,30],[333,54],[332,2],[334,2],[283,55],[284,56],[289,2],[335,2],[270,2],[336,30],[208,2],[209,57],[207,58],[153,59],[154,59],[156,60],[157,61],[158,62],[159,63],[160,64],[161,65],[162,66],[163,67],[164,68],[165,69],[166,69],[168,70],[167,71],[169,70],[170,72],[171,73],[155,74],[205,2],[172,75],[173,76],[174,77],[206,78],[175,79],[176,80],[177,81],[178,82],[179,83],[180,84],[181,85],[182,86],[183,87],[184,88],[185,88],[186,89],[187,90],[189,91],[188,92],[190,93],[191,94],[192,2],[193,95],[194,96],[195,97],[196,98],[197,99],[198,100],[199,101],[200,102],[201,103],[202,104],[203,105],[204,106],[337,2],[311,107],[310,108],[338,2],[339,2],[49,2],[281,2],[280,2],[231,109],[232,110],[119,111],[118,112],[340,109],[341,109],[47,2],[51,113],[342,2],[343,2],[50,2],[368,114],[369,115],[344,116],[347,116],[366,114],[367,114],[357,114],[356,117],[354,114],[349,114],[362,114],[360,114],[364,114],[348,114],[361,114],[365,114],[350,114],[351,114],[363,114],[345,114],[352,114],[353,114],[355,114],[359,114],[370,118],[358,114],[346,114],[383,119],[382,2],[377,118],[379,120],[378,118],[371,118],[372,118],[374,118],[376,118],[380,120],[381,120],[373,120],[375,120],[279,121],[278,2],[286,122],[384,2],[385,2],[386,123],[312,2],[292,2],[387,2],[388,124],[302,2],[48,2],[308,125],[306,126],[307,127],[305,128],[304,129],[303,2],[52,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[128,130],[126,109],[139,109],[124,131],[129,130],[125,130],[127,132],[133,2],[134,2],[135,109],[136,2],[137,2],[138,133],[132,134],[140,135],[130,130],[121,2],[131,2],[123,136],[122,109],[84,137],[99,138],[85,139],[82,109],[88,140],[100,141],[83,140],[87,140],[89,140],[102,142],[86,143],[95,2],[94,141],[101,143],[93,2],[97,144],[96,2],[79,140],[81,2],[80,140],[90,140],[91,145],[92,140],[98,146],[78,147],[61,187],[63,187],[60,188],[212,189],[213,189],[55,190],[54,189],[104,191],[105,192],[103,193],[142,194],[108,195],[109,196],[110,197],[120,198],[141,197],[146,199],[145,200],[144,200],[143,200],[147,201],[107,189],[148,202],[62,203],[59,204],[106,205],[58,188],[254,109],[255,2],[256,2]],"semanticDiagnosticsPerFile":[261,259,301,64,65,67,66,68,69,77,70,72,73,76,74,71,75,241,242,240,238,239,53,221,220,228,225,224,219,230,215,226,218,217,227,222,229,223,216,233,258,214,264,260,262,263,266,267,268,265,269,271,272,273,274,275,276,277,257,282,287,288,290,291,293,111,115,116,112,113,114,117,294,285,296,295,297,298,299,300,309,313,315,314,316,317,319,320,318,321,322,323,324,325,326,327,328,329,330,331,333,332,334,283,284,289,335,270,336,208,209,207,153,154,156,157,158,159,160,161,162,163,164,165,166,168,167,169,170,171,155,205,172,173,174,206,175,176,177,178,179,180,181,182,183,184,185,186,187,189,188,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,337,311,310,338,339,49,281,280,231,232,119,118,340,341,47,51,342,343,50,368,369,344,347,366,367,357,356,354,349,362,360,364,348,361,365,350,351,363,345,352,353,355,359,370,358,346,383,382,377,379,378,371,372,374,376,380,381,373,375,279,278,286,384,385,386,312,292,387,388,302,48,308,306,307,305,304,303,52,8,9,13,12,2,14,15,16,17,18,19,20,21,3,46,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,128,126,139,124,129,125,127,133,134,135,136,137,138,132,140,130,121,131,123,122,84,99,85,82,88,100,83,87,89,102,86,95,94,101,93,97,96,79,81,80,90,91,92,98,78,149,150,151,152,210,211,61,63,60,234,212,213,55,54,235,236,237,104,105,103,243,244,245,246,247,248,249,250,251,252,253,142,108,109,110,120,141,146,145,144,143,147,107,148,62,59,57,106,56,58,254,255,256],"latestChangedDtsFile":"./dist/harness/adapters/__tests__/ssr.test.d.ts"},"version":"4.9.5"}
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../node_modules/typescript/lib/lib.scripthost.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/typescript/lib/lib.es2016.full.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/telejson/dist/index.d.ts","../../node_modules/@storybook/addon-actions/dist/index.d.ts","./src/fixtures/types.ts","./src/fixtures/fixtures.tsx","./src/settle-signal.ts","./src/response-impl.ts","./src/types.ts","./src/respond-with.ts","./src/fetch/types.ts","./src/fetch/fetch-request-matches-mock.ts","./src/mock-requester.ts","./src/fetch/mock-fetch.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/clone.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/entries.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/errors.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/errors-from-error.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/get-kind-from-error.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/get-original-stack-from-error.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/keys.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/types.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/kind-error.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/safe-stringify.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/truncate-middle.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/values.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/secrets/secret.d.ts","../../node_modules/@khanacademy/wonder-stuff-core/dist/index.d.ts","../wonder-blocks-data/dist/util/types.d.ts","../wonder-blocks-data/dist/util/hydration-cache-api.d.ts","../wonder-blocks-data/dist/util/request-api.d.ts","../wonder-blocks-data/dist/util/purge-caches.d.ts","../wonder-blocks-data/dist/components/track-data.d.ts","../wonder-blocks-data/dist/hooks/use-hydratable-effect.d.ts","../wonder-blocks-data/dist/components/data.d.ts","../wonder-blocks-data/dist/components/intercept-requests.d.ts","../wonder-blocks-data/dist/util/data-error.d.ts","../wonder-blocks-data/dist/hooks/use-server-effect.d.ts","../wonder-blocks-data/dist/hooks/use-cached-effect.d.ts","../wonder-blocks-data/dist/hooks/use-shared-cache.d.ts","../wonder-blocks-data/dist/util/scoped-in-memory-cache.d.ts","../wonder-blocks-data/dist/util/serializable-in-memory-cache.d.ts","../wonder-blocks-data/dist/util/status.d.ts","../wonder-blocks-data/dist/util/gql-types.d.ts","../wonder-blocks-data/dist/util/get-gql-request-id.d.ts","../wonder-blocks-data/dist/util/get-gql-data-from-response.d.ts","../wonder-blocks-data/dist/util/graphql-types.d.ts","../wonder-blocks-data/dist/util/graphql-document-node-parser.d.ts","../wonder-blocks-data/dist/util/to-gql-operation.d.ts","../wonder-blocks-data/dist/components/gql-router.d.ts","../wonder-blocks-data/dist/hooks/use-gql.d.ts","../wonder-blocks-data/dist/util/gql-error.d.ts","../wonder-blocks-data/dist/index.d.ts","./src/gql/types.ts","./src/gql/gql-request-matches-mock.ts","./src/gql/mock-gql-fetch.ts","./src/settle-controller.ts","./src/harness/types.ts","./src/harness/adapters/css.tsx","./src/harness/adapters/data.tsx","./src/harness/adapters/portal.tsx","../../node_modules/@types/history/DOMUtils.d.ts","../../node_modules/@types/history/createBrowserHistory.d.ts","../../node_modules/@types/history/createHashHistory.d.ts","../../node_modules/@types/history/createMemoryHistory.d.ts","../../node_modules/@types/history/LocationUtils.d.ts","../../node_modules/@types/history/PathUtils.d.ts","../../node_modules/@types/history/index.d.ts","../../node_modules/@types/react-router/index.d.ts","../../node_modules/@types/react-router-dom/index.d.ts","./src/harness/adapters/router.tsx","../wonder-blocks-core/dist/util/aria-types.d.ts","../wonder-blocks-core/dist/util/types.propsfor.d.ts","../wonder-blocks-core/dist/util/types.d.ts","../wonder-blocks-core/dist/components/text.d.ts","../wonder-blocks-core/dist/components/view.d.ts","../wonder-blocks-core/dist/components/render-state-context.d.ts","../wonder-blocks-core/dist/components/with-ssr-placeholder.d.ts","../wonder-blocks-core/dist/components/id-provider.d.ts","../wonder-blocks-core/dist/components/unique-id-provider.d.ts","../wonder-blocks-core/dist/util/add-style.d.ts","../wonder-blocks-core/dist/util/server.d.ts","../wonder-blocks-core/dist/hooks/use-unique-id.d.ts","../wonder-blocks-core/dist/hooks/use-force-update.d.ts","../wonder-blocks-core/dist/hooks/use-is-mounted.d.ts","../wonder-blocks-core/dist/hooks/use-latest-ref.d.ts","../wonder-blocks-core/dist/hooks/use-on-mount-effect.d.ts","../wonder-blocks-core/dist/hooks/use-online.d.ts","../wonder-blocks-core/dist/hooks/use-render-state.d.ts","../wonder-blocks-core/dist/components/render-state-root.d.ts","../wonder-blocks-core/dist/index.d.ts","./src/harness/adapters/ssr.tsx","./src/harness/adapters/adapters.ts","./src/harness/adapter.tsx","./src/harness/adapt.tsx","./src/harness/make-test-harness.tsx","./src/harness/make-hook-harness.tsx","./src/harness/hook-harness.ts","./src/harness/test-harness.ts","./src/index.ts","./src/__tests__/mock-requester.test.ts","./src/__tests__/respond-with.test.ts","./src/__tests__/settle-controller.test.ts","./src/__tests__/settle-signal.test.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","./src/fetch/__tests__/fetch-request-matches-mock.test.ts","./src/fetch/__tests__/mock-fetch.test.ts","./src/fixtures/fixtures.basic.stories.tsx","./src/fixtures/fixtures.defaultwrapper.stories.tsx","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@testing-library/dom/types/matches.d.ts","../../node_modules/@testing-library/dom/types/wait-for.d.ts","../../node_modules/@testing-library/dom/types/query-helpers.d.ts","../../node_modules/@testing-library/dom/types/queries.d.ts","../../node_modules/@testing-library/dom/types/get-queries-for-element.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/types.d.ts","../../node_modules/@testing-library/dom/node_modules/pretty-format/build/index.d.ts","../../node_modules/@testing-library/dom/types/screen.d.ts","../../node_modules/@testing-library/dom/types/wait-for-element-to-be-removed.d.ts","../../node_modules/@testing-library/dom/types/get-node-text.d.ts","../../node_modules/@testing-library/dom/types/events.d.ts","../../node_modules/@testing-library/dom/types/pretty-dom.d.ts","../../node_modules/@testing-library/dom/types/role-helpers.d.ts","../../node_modules/@testing-library/dom/types/config.d.ts","../../node_modules/@testing-library/dom/types/suggestions.d.ts","../../node_modules/@testing-library/dom/types/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/react-dom/test-utils/index.d.ts","../../node_modules/@testing-library/react/types/index.d.ts","./src/fixtures/__tests__/fixtures.test.tsx","./src/gql/__tests__/gql-request-matches-mock.test.ts","./src/gql/__tests__/mock-gql-fetch.test.tsx","./src/gql/__tests__/wb-data-integration.test.tsx","./src/harness/__tests__/adapt.test.tsx","./src/harness/__tests__/adapter.test.tsx","../../node_modules/@khanacademy/wonder-stuff-testing/dist/jest/isolate-modules.d.ts","../../node_modules/@khanacademy/wonder-stuff-testing/dist/jest/wait.d.ts","../../node_modules/@khanacademy/wonder-stuff-testing/dist/jest/index.d.ts","../../node_modules/@khanacademy/wonder-stuff-testing/dist/data-factory-for.d.ts","../../node_modules/@khanacademy/wonder-stuff-testing/dist/index.d.ts","./src/harness/__tests__/hook-harness.test.ts","./src/harness/__tests__/make-hook-harness.test.tsx","./src/harness/__tests__/make-test-harness.test.tsx","./src/harness/__tests__/test-harness.test.ts","./src/harness/__tests__/types.typestest.tsx","./src/harness/adapters/__tests__/css.test.tsx","./src/harness/adapters/__tests__/data.test.tsx","./src/harness/adapters/__tests__/portal.test.tsx","./src/harness/adapters/__tests__/router.test.tsx","./src/harness/adapters/__tests__/ssr.test.tsx","./types/aphrodite.d.ts","./types/matchers.d.ts","./types/utility.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/acorn/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/connect/index.d.ts","../../node_modules/@types/body-parser/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/concat-stream/index.d.ts","../../node_modules/@types/cross-spawn/index.d.ts","../../node_modules/@types/ms/index.d.ts","../../node_modules/@types/debug/index.d.ts","../../node_modules/@types/detect-port/index.d.ts","../../node_modules/@types/doctrine/index.d.ts","../../node_modules/@types/ejs/index.d.ts","../../node_modules/@types/emscripten/index.d.ts","../../node_modules/@types/escodegen/index.d.ts","../../node_modules/@types/estree-jsx/index.d.ts","../../node_modules/@types/send/node_modules/@types/mime/index.d.ts","../../node_modules/@types/send/index.d.ts","../../node_modules/@types/range-parser/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/express-serve-static-core/index.d.ts","../../node_modules/@types/mime/Mime.d.ts","../../node_modules/@types/mime/index.d.ts","../../node_modules/@types/http-errors/index.d.ts","../../node_modules/@types/serve-static/index.d.ts","../../node_modules/@types/express/index.d.ts","../../node_modules/@types/find-cache-dir/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/is-ci/node_modules/ci-info/index.d.ts","../../node_modules/@types/is-ci/index.d.ts","../../node_modules/@types/is-empty/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/chalk/index.d.ts","../../node_modules/pretty-format/node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/pretty-format/node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/parse5/lib/tree-adapters/default.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/tough-cookie/index.d.ts","../../node_modules/@types/jsdom/base.d.ts","../../node_modules/@types/jsdom/ts4.0/index.d.ts","../../node_modules/@types/jsdom/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/mdx/types.d.ts","../../node_modules/@types/mdx/index.d.ts","../../node_modules/@types/mime-types/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/nlcst/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/react-test-renderer/index.d.ts","../../node_modules/@types/react-window/index.d.ts","../../node_modules/@types/resolve/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/supports-color/index.d.ts","../../node_modules/@types/testing-library__jest-dom/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"f3d4da15233e593eacb3965cde7960f3fddf5878528d882bcedd5cbaba0193c7","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"2dfbb27de6bf0db1018122b054d26cf1fc47bc1979d096aec101b08a42c63b13",{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"5b1d4ebd62d975c7d3826202f8fac290bac0bae6e04d9e84d1707d7047e108df","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"51da54ddc920585f6f7ad98b6ba9916dfbb42ce4b8a872fd4f9a4cc93491f404","affectsGlobalScope":true},"a01fdf7c8198a03dbb410266ca31de057ccf48317f4d3bf9d090fa5998798ebf","2d2f047b45f1c7d85eef592812385410bb486af077144ee7d954c055f5a9402b",{"version":"593cded80d2909dcb100cdfff06c4dea70c4acc94c1a3841d54cd988b18e058c","signature":"200a615540f29258b76b334b8246e899539beb5581bd8ee6e3448edd93c05862"},{"version":"fcaa4a493fb917f6df2e96cb3e6510cb218e570f64fda76eda26bc77e8ec1192","signature":"f38142011c0b2d856bab54393b43216053d1256e72f837113e0dde4f76442324"},{"version":"07674b45cc6d5387a82d201a9e61f7602015e6914c09b39bb2362464a196f7d3","signature":"85051413b965f78885e23062e31aa01f978046fc1bb576a0cd8d316a20b7963a"},{"version":"2b402683a630d5fe59dcd616c216dd750d288cfebcbbc34ce0cae98efc89f491","signature":"4e4c4fd11584b10e0d7b7af5480cf4d08907a77367c971e3eab66658cf589fa8"},{"version":"ac6c612afdfdeff19d75c88ea2745e2de12c1209bd7065b6f3fbef6d141446d5","signature":"70e84fb85b6389dd2d2594b18987fb13c44c01533fd785c3cf94f2eca08fa321"},{"version":"e9759a1254fe59a39c7b269f6bdb616ceedc327807c60441f1935b6ddf774adf","signature":"228bd0353f585c96f6e6bc89692c5c09476e73a7d3fd73bc80b9912347b0e013"},{"version":"71c44cf6f5a075ff98c75c3f42f9ec8da6090069c607722f072b184aba73236c","signature":"132ebf96a880d1917da03619bd23fed7c89260ed43093c3ed49046e803747767"},{"version":"7d9f9cedf1d597b1f9e2a7516302b0a8d5357c63d88ad55c8c821e29c2689dc8","signature":"58912fce962f9be7eb373a43978ee5d0ddd9fea0c22bb29481ccd2f9415901c4"},{"version":"8f54991b8b870c3b5179f1044558177215d42ace6ba828a367558454a2bd6c88","signature":"01ec6ca76a9d8eb9f53697c30185c34f673702f67ec00e4e82d94a09c9f962cb"},{"version":"9a308fee0aee25244069fdfa76ed65f7b8d0889ccc6da6303743a4c24ca5efbd","signature":"ee5cd53db14edc37a77035f21ddc386ef2409945ca97c37391ad2f1009498a39"},"6304649762698999bfad27a74a30bfce53fbf72922f48a85199e51f722bad413","876f754b9f5b5743997215726693660487af49f333f888456c50a599980935e0","c9ba22f4c9d081d1b90bf59b99d8d9e4d220f41aeb47a153f137e5189b0bc76d","0c8f708bcff149ab03fc5552c628a3fe307797e5233fb15625d67a5254294025","ddaa076d642cda52990e7ac3f0d4e77988e48a5ef8364ab092a8e0d4e2b0e56c","6f995f0051cef664462da3abde1cfaf8ac458b2c591c4bd309d6769c142f1777","46bba3ce6b32673257d0db0056f30e92200bd6f550f190d13bf3ba71557061e0","d6e0a751111e99d7cf5239b8ebc278e9bfa4a64447012bdeac04fee58453553d","aab3feec73ec8dc10a95dcff051cf36c1b3687ca72a576a1dd8f0ced1896a2ac","bcc1c7f9a00220d60d6c7d89b7d52286e3744a5a0749d236348bc9380898cb90","f65c3223aff15c3deb2023e8d3c3557fcf7f3a497b64cfa16a75b18b7e7f6555","7ca8408e005a688b33b6c9d99e07242f65590bd1347abbae2436787f21116798","64bbd0021408f87e2077556805f6ffc4d89881e6e451978b11f0cf0994094b16","49e5f387f7ad4ff64cc849dc6e0275df14877d3be2b1dd23bf203b6fc1b5b36c","6c47805d280f04b6f0f121769f9d8ce44d093f0ff2bffa0cff9d42f81fd40b0b","fd3be770987132c42a30247bf0d956f83df0697fa9a6499bbe2500baa8259304","b59c52322cf5b0a14a4a1cde9ecadf809f4cfdc9353f0d150e83fc2a64ddb6e5","5fa26d809d4df84462466748f19e7555277d220bf1445b5a11637c1c4cd5371d","6d0204f5ba6b1c87ff9603cda9fe781fdf1a1e95d21d7743c580358efd149447","14ee3643c2f0a55b5e62b531a3fa1e3623ce77c3ab2ac516b1c257f219bf647f","e6a0b9fb46804147f12602cb9fa1dfe4adca77c388a9e34b1a7d0c2aeb195a50","e5ee90e1eacee39423eb6b108dd08e6e595b3f968d65fc203756d058bafe30bb","61c7fe392393431ac9fb67793867724295e5ad44cee6d48fd0947f743bdd9b1a","45e875e40ed8093362afba19d4763d5fa0aa07fdf9b06e885358abfd2de36330","cfd1694488bc9b72540e169f83257fc9b7d4150100a9d429d27e989f9fcc903e","9d5af219debc9148405611ad45d719ae078e946ccd0dfd0fcf87e60726f9e624","a0c8e206edf12d0005d1e0770fbcd9f7c66e7080d7930d156621e7c2f603d4bb","87f99ae22150754d29e5b08b0ca434621fd189ca4a3142bcd264c1699e5b4f57","a658ce87b913d15aad01c85a76b3eeba24ae581ee6438c1ee472d99a79367841","2cec61915f7669126298ff9b8b62c69a86450439b4efe370faee72d2aa9160cd","cb3c5d3ff94dc40b12bee97758831b346c9db9b6b2d1f76a8c9a9b02883a97e0","f50291aa3ae4098090480537cc4994c76e781629511e458205734214804b4796","859e6c8e3cbc84f545c21cf3660297a75961f9a5b4567d645bdb2ec89785ff99","a95ea2462244c5b5584f7e52d974d2cd184336e39aa62ce98001a730edf0f73f","c6df11085a9faf89ed846bb4513071c94312583f7df4a5be6aafc96da25c3027","10b2878e391545247ba90ad11c61e324fcf133fd8eb2f42f1122ec2c150d47bc","0b6eb37719fa3a342d2e86f7afff19dcd5d20b1ec9328686b7e60f024efd6437","78a4eb1dd8f938e399ada62503831fe3aa486ea378b91e726c9216166b09c409","26643326c65042186e4c72857eaf349a29ef14ffd90ca9e66ac4df447647d4ad",{"version":"0de8f378a294328e4a58e3da4a7587954188d7de7fe57dbdcbe8124aae968830","signature":"be161523b05a8b59198a264ef526f89c307f8c9f1ac6a1af4bc164d6da813350"},{"version":"9bd363dd3228d806474b329ea77df05629120ca1eb299a5e3dbd9eb01966297e","signature":"51dc98c2d8e3b4b69e7dce526a7013479e51501335edb63b1349f84cb86d47ab"},{"version":"37b6a9d686696b1dc24cace1764b255c3bda528555ec06eb8a017fef81279937","signature":"0c151deac25e886fc969a8629febeaca24c1728e9a7077665e96213ec97cde96"},{"version":"2d8315a0ac094df82a1e9f666a317386f6edd2400852dbdc8ead413dfdbfb007","signature":"cf6c4f99118a2ca38d7c6ca191a619ebd5a443014503a8a28b02d2ad0f4d4aec"},{"version":"fb8cc1b7e723d2887f1aa727627ad15e23fe4efa29e8e9dcebc0b64dde9a7572","signature":"da89ed097f7d69f3685d7fffda94a8157310400f6c0b40b23b025e820c552129"},{"version":"e177714c29723a9aa5ada9936e14f6a88d6ccf6fb5ceab3cddf2579852b48e83","signature":"3cf51621d745b17af26dda92d20f67ff3e8effad79966393fc2476982577fed6"},{"version":"9449622d40fc8c4ac59e3467e5aea212c83160aaedf83da08a824d8210bd2b29","signature":"c95fe8cb5ab7267492c11ad0cb4efd5fd822090e5e16794f43b8778e4cf85d0a"},{"version":"18bca068c0d60738754d69e0effd25d0e33e2f47cf23d9296bba98443896e64b","signature":"a3be723c4c0def9dc74cb445e7813e986a0625b258cf0957752836a89be0cddc"},{"version":"271cde49dfd9b398ccc91bb3aaa43854cf76f4d14e10fed91cbac649aa6cbc63","affectsGlobalScope":true},"2bcecd31f1b4281710c666843fc55133a0ee25b143e59f35f49c62e168123f4b","a6273756fa05f794b64fe1aff45f4371d444f51ed0257f9364a8b25f3501915d","9c4e644fe9bf08d93c93bd892705842189fe345163f8896849d5964d21b56b78","25d91fb9ed77a828cc6c7a863236fb712dafcd52f816eec481bd0c1f589f4404","4cd14cea22eed1bfb0dc76183e56989f897ac5b14c0e2a819e5162eafdcfe243","8d32432f68ca4ce93ad717823976f2db2add94c70c19602bf87ee67fe51df48b","1d4bc73751d6ec6285331d1ca378904f55d9e5e8aeaa69bc45b675c3df83e778","8017277c3843df85296d8730f9edf097d68d7d5f9bc9d8124fcacf17ecfd487e",{"version":"957e334206d0b56846d1f684368b7b6e7e3f773c8cc8c857a3a62b9d8582d289","signature":"4da562c0ce0317d1e551d7e227e45e52e8a9e7f4482ab06f784691a54dc49626"},"95f67633f753545b50294e21b65e412641ce57210c140b08cb96d0e5661bdb26","2dc223bbca44faa55c75c3c958763d9b13512750b30e9fc8a0190805f3d78008","62f9b9394495a13fbd44cead7476b38d4b0dac394cb48c9e4c4a0126710cf64a","9b16d7991ee5c23ce7ae1f0c41a737338a7f6e8562386200732a597743cb4277","6da96cdc0d85dd0ea129932889d7fa0b24dc69d313ae85d7ccbf1b26f7b6a027","5683452b6b350b64c0cd31fd384ac04b8a277de34abf625dbfde158e58bf543d","35f9da518991b2db4e4f4740bcb0a0b1574fe34ba4c8f42eb9e20d34ff5ff156","6055f104386c7d62778355c2c8f3fd9a37c29c340cc3c4cbf0da23b1a2bce43d","1ec2168acad8107b990e9c19099c198f36da657f2f60662101a2234bc8afc18c","b774135aab37d47093fb4acf73c33ccf95374542b61d632656fea625d5a772f9","15b4dcbf307452ab56bf665fc4fadeea11a8201ed23098cfb9bce145fccb7139","ee0fccc1e97251e3f3aa7d4a0682b2a28bd0bbf6fae3e169368eb01d74c4e4ec","e7391aed3af92e257fc4ea6784f84aa931026a92cf36472c1e89f4279858552c","f7147de5c8f9cb1143c3b43630f734fff707f1535addabb592f8e560209dd6a7","2a63923fa6a043add1d08c5e594bbcd60ab1c44adcad05f12ccdaf2059eec642","ff1881c58824d49ca3442d9561c3aef2767fdb1c2b9f4b251063f4c2d5e03fc4","055e664e1288198c705162c24c89591e8f88c91a89821c5c528256b025779b26","398155e58de7e65e21c70d5d71c1fddb922681cd50477e6b62b0be5fa9bcf847","ff06ba1844b1bfdb69f04f6303109c3c17b16633e0594f2414306abb64271630","9b9f299c3ce9ca16d6137ffd251221ca483b55ac1b1d211fc0dcc3a07bb91d21",{"version":"9060f73f43909a278cc12850b6a43fd4a2c1b8faabca30d00c02c99428b1df75","signature":"e6652ae180a8729b06c7d1b1a6f8826601211419b70847f426021c1f171c0bab"},{"version":"5d8f9c87f5f9826df29f8e1c8d64eef7d19cf752f0649196b53c90b62acd67ee","signature":"3fb226bbe3fd4ec26c4f5fe9cc4f2c22d07c688f746f5c1deacc2229f1b59b42"},{"version":"b5f6b5f7217d7514de20023f0f2239c2c4d32760077f5f2336ab1de14e68b41a","signature":"1fded377dfadc247faa54c11ea28aed5b684dd442072135d2f1f140e89d2395f"},{"version":"0d5c365454d98d3aa65db43d10264d116f4c96e84e61f2433aeef0827cd92c5d","signature":"9cbc234ba7dcd2434a632cb8cae65f33c2f47ceb8c5a6317e80ae04ce8317c1e"},{"version":"4c4f5c6539a87ceb63999deb906219f60c9a46bc8b1cca0be7d0112731fb2208","signature":"043ac72efb82b34d2f9341409b04267047c27b8a8a2b2599989fc07cf65f36b0"},{"version":"06a81301d67ce00c39c170d06df66909f8512d4747985a709e6cc978df224a48","signature":"7abc2ec44c1c1fe6b7c17ece5f23205e8c5016e12325f3e04321302eabbf45cb"},{"version":"8ca08674daf92a80a66401622d6f5674a7d8a873a28ea74394620263ad67aaa6","signature":"e9664eb8ec8564e88d067d1fe05fdd632ff02c2d197bb97b74bd1f845cf5be7e"},{"version":"506e6db185f82c2cca01d7a3f0b299995ccb607dfdabb73d580e9c9034fd6f90","signature":"e838c1d7a20aa584c2ba376cdc38d783ac16622dd8e373be4ecc64f01eda369a"},{"version":"cc6827e6af27e04907a16a56d9d44bcf4bdad34ccd3a25a19bdd8003bb0b0c1c","signature":"27584f8894545c88c3d3f42c9cb4adfe8c434f1261c71a07e95bd09d83fc1edf"},{"version":"7b3ceaa1ea2807849804daaa31068807313f4d8309a589c3e05563594aecaaa4","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"aa089a34f038ca3404e341ec7ef64ebca5aedfbc9ba66949f352cc2019a4b41f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"6f02fe2587cd618422ebdfe174b3c8a808ae9d2061b565cf2cc3752a011395c7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3c9dbb913c94bb3f1554b0d825f1baeac28d356aa891a71e8b243f60b076c905","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"17a1140b90821c2c8d7064c9fc7598797c385714e6aa88b85e30b1159af8dc9b","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"2c45b35f4850881ab132f80d3cb51e8a359a4d8fafdc5ff2401d260dc27862f4","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","09326ae5f7e3d49be5cd9ea00eb814770e71870a438faa2efd8bdd9b4db21320",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"ed2a670a77a1b80653c5bde2d813b0ab2e92872cc9b2b611ce11050b95139be6","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","626bccaba2f61f03abe558a39501631565389a748bc47dd52b305c80176333c1","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568",{"version":"f7847eed0f11f533931e8a86a8d6a0204dde837eb6fdf75c80ee9331e7b169fd","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"451cd892ed62ce494edfc934d4a2aabed494410f5f945f925a098bd59d60fd41","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"3fc680d9c902a2aeb44de4a1360e8ef97418b7572fec36ad8291ee3fe43de330","signature":"b013a9fff7a44a1440fa7efc351ba471de906874dcc45777ddc45a1c05d33bb1"},{"version":"06a8aae8031432812b63552c2ffba8a6da7e77b1e0bbcfc7c51166c383cb958b","signature":"a7e13ad948ea26884dc38ece626bfa093313b527c045199e068790e5dcf9a535"},"5024433f8da3a7968f6d12cffd32f2cefae4442a9ad1c965fa2d23342338b700","f70bc756d933cc38dc603331a4b5c8dee89e1e1fb956cfb7a6e04ebb4c008091","8387ec1601cf6b8948672537cf8d430431ba0d87b1f9537b4597c1ab8d3ade5b","d16f1c460b1ca9158e030fdf3641e1de11135e0c7169d3e8cf17cc4cc35d5e64","fbc350d1cb7543cb75fdd5f3895ab9ac0322268e1bd6a43417565786044424f3","e3c5ad476eb2fca8505aee5bdfdf9bf11760df5d0f9545db23f12a5c4d72a718","462bccdf75fcafc1ae8c30400c9425e1a4681db5d605d1a0edb4f990a54d8094","5923d8facbac6ecf7c84739a5c701a57af94a6f6648d6229a6c768cf28f0f8cb","d0570ce419fb38287e7b39c910b468becb5b2278cf33b1000a3d3e82a46ecae2","3aca7f4260dad9dcc0a0333654cb3cde6664d34a553ec06c953bce11151764d7","a0a6f0095f25f08a7129bc4d7cb8438039ec422dc341218d274e1e5131115988","cb3aaf306b5ff2ec718359e2e2244263c0b364c35759b1467c16caa113ccb849","45785e608b3d380c79e21957a6d1467e1206ac0281644e43e8ed6498808ace72","a3ce619711ff1bcdaaf4b5187d1e3f84e76064909a7c7ecb2e2f404f145b7b5c","2a90177ebaef25de89351de964c2c601ab54d6e3a157cba60d9cd3eaf5a5ee1a","82200e963d3c767976a5a9f41ecf8c65eca14a6b33dcbe00214fcbe959698c46","b4966c503c08bbd9e834037a8ab60e5f53c5fd1092e8873c4a1c344806acdab2","b567296d1820a1e50b6522c99a4f272c70eb2cba690da6e64a25635b70b1383f","b72fe4260471b06163a05df5228c09b76472b09ea315b7a2df52343181fe906f","852babd1fbe53723547566ba74312e48f9ecd05241a9266292e7058c34016ce8",{"version":"09781049fd2f9dd784052115fb7349d30c8fcaed241d8e5771179d259647a560","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"31a222fd4bb33fb0d937836902dee33d61b95a04a3c61ca5f1eea42425710e5e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"2425f53babdbc63be7b2f573a606a185ec53f3ea05c6d7e2a20e7744f0b74338","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"af9133b3045c9b529dc061f07bb453aa9c452ae7aad8e9e9401df5fe1ab2bb71","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"7396c9506de8d7e866aef1bfc11cec8420dfeccab234459880c4ffbf6c8ea4cd","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"96eca15e87ab00eefc2a6d351a462a06f32294fb156f3fb9dc30372a1ff586c4","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"b5794f89326fa85a7e51809e2de5dc54fd7a6479fb452063fe2313ebec7f9783","77eceb4e898664b1e9d7a0194503c9e73aa88f3dc6fbb59a784f4b46ed0c9208","96ebb6230d31b21acd72d3ba70ae85d6cdec19bcb2046cbe44ee96cdaa026f62","b501ad7b5c7a7458540484fe50a009c163ae8f012c4e6f802676ddae9395bab6","653ad5ff42050e5225fd2739d98b728f39541d9aff27bcd90f734c96faa0a361",{"version":"b7fa6653ba72aa1c083e5976c71921f7f1789948bd522a9f5ce73e09d5afb3b5","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"b59b43140dc6bb9208add2552d30df738837ae965d62051870fd6372904506f7","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"7a0ef9edb380178db25b9e81dc9e41d60160b407759e9e4454acd510db535510","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"cd4033b4fcef9390c656e4f8dc6dd8f8942e809e8e1fdb50ad7319135ccc8239","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"5b11b6b4c0d8982184d3aff4705dbc8746d1343632768264ea186db9e8b6980e","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"8efce7fe952e57037e64ce96d63f92ef2fbbdf680645fdd7afb0d40b9d94ecc1","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"95d61ca44e81f95a38d990dfaf30f02cdc455cd65a87eb4e2194ed41ab17495f","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"fb7a41a3f389ea887c5d4f0274fbb4e71c6d92acb9ece95b633ddd11335105db","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"f3df95a65bfcb3f1582128eee79be1cf621314b4e408237076396c63461be4da","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},{"version":"77722e80b15ceb52c3be18fd35eb4be2890633ac0738c1922a3b3727301596df","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881"},"676b8fabad5b09ecf15564ce90e183b1204d75dbe6647addb19ecdff29d52f1a",{"version":"9be348abf5d43091876a86f9acf23927a240915f8fc6d51155dbe5bdb69ef229","affectsGlobalScope":true},{"version":"0edf50909110994834718a7582b9ceedf20b14aa9fde0351eb2ac2cf5f430feb","affectsGlobalScope":true},"946bd1737d9412395a8f24414c70f18660b84a75a12b0b448e6eb1a2161d06dd","3777eb752cef9aa8dd35bb997145413310008aa54ec44766de81a7ad891526cd","a20fc1fcd9cd7c2b79d5f00d14802c1d58c3848e09ee4f84b350591af88b7636","19fb2161edf60fbe73ee3650c1cee889df0525ed852eff2d5fa6e5480c132ae3","b4f76b34637d79cefad486127115fed843762c69512d7101b7096e1293699679","3e0a34f7207431d967dc32d593d1cda0c23975e9484bc8895b39d96ffca4a0d8","44d81327b8fbb2d7ca0701f5b7bb73e48036eb99a87356acf95f19ed96e907aa","b6ddf3a46ccfa4441d8be84d2e9bf3087573c48804196faedbd4a25b60631beb","6d829824ead8999f87b6df21200df3c6150391b894b4e80662caa462bd48d073","afc559c1b93df37c25aef6b3dfa2d64325b0e112e887ee18bf7e6f4ec383fc90","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","0bcda522a4bb74c79e11a2c932db88eaca087a6fb11eb3fda4aaa4d655b1783e","5e3a55837aa1f42af2d2334c9b750f59f5f50a2205471875f5dd6aadc3e49ddb","6a9c5127096b35264eb7cd21b2417bfc1d42cceca9ba4ce2bb0c3410b7816042","78828b06c0d3b586954015e9ebde5480b009e166c71244763bda328ec0920f41","4b4c4c74c41b52cada66c85638633d2b0fe7c43445daf877cfddb310d3f5e998","febcc45f9517827496659c229a21b058831eef4cf9b71b77fd9a364ae12c3b9e","de8877483ce1e67bced3ad1f4ac877fd5066f8465ab6a9e8b716662d727553e5",{"version":"3f547f989aa9c12dc888ae25c4afc076eb442f681ba17f50924642fe29c01da0","affectsGlobalScope":true},"9dffc5c0859e5aeba5e40b079d2f5e8047bdff91d0b3477d77b6fb66ee76c99d","f54243828d27a24d59ebf25740dfe6e7dff3931723f8ce7b658cdbe766f89da9","84e3bbd6f80983d468260fdbfeeb431cc81f7ea98d284d836e4d168e36875e86","aad5ffa61406b8e19524738fcf0e6fda8b3485bba98626268fdf252d1b2b630a","16d51f964ec125ad2024cf03f0af444b3bc3ec3614d9345cc54d09bab45c9a4c","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"352fc8497a30bc806d7defa0043d85802e5f35a7688731ee9a21456f5cb32a94","affectsGlobalScope":true},"5b9ecf7da4d71cf3832dbb8336150fa924631811f488ad4690c2dfec2b4fb1d7","951c85f75aac041dddbedfedf565886a7b494e29ec1532e2a9b4a6180560b50e","f463d61cf39c3a6a5f96cdf7adfdb72a0b1d663f7b5d5b6dd042adba835430c2","f7a9cb83c8fbc081a8b605880d191e0d0527cde2c1b2b2b623beca8f0203a2cd","43cdd474c5aa3340da4816bb8f1ae7f3b1bcf9e70d997afc36a0f2c432378c84","19f1159e1fa24300e2eaf72cb53f0815f5879ec53cad3c606802f0c55f0917e9","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","fd326577c62145816fe1acc306c734c2396487f76719d3785d4e825b34540b33","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","ac295e0d29ca135d7dca2069a6e57943ed18800754dbe8fcb3974fb9ce497c3c","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","6a61697f65beb341884485c695894ee1876a45c1a7190d76cb4a57a679c9d5b8","a3e5b8b86e7bd38d9afdc294875c4445c535319e288d3a13c1e2e41f9af934f2","d45d40831ccbd547e3f4ae8f326420b9e454dd27fa970f417c8e94a23e93db29","9e951ec338c4232d611552a1be7b4ecec79a8c2307a893ce39701316fe2374bd","70c61ff569aabdf2b36220da6c06caaa27e45cd7acac81a1966ab4ee2eadc4f2","905c3e8f7ddaa6c391b60c05b2f4c3931d7127ad717a080359db3df510b7bdab","6c1e688f95fcaf53b1e41c0fdadf2c1cfc96fa924eaf7f9fdb60f96deb0a4986","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","db25694be959314fd1e868d72e567746db1db9e2001fae545d12d2a8c1bba1b8","43883cf3635bb1846cbdc6c363787b76227677388c74f7313e3f0edb380840fa","2d47012580f859dae201d2eef898a416bdae719dffc087dfd06aefe3de2f9c8d","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","2cec1a31729b9b01e9294c33fc9425d336eff067282809761ad2e74425d6d2a5",{"version":"5bc4bb5796ce660d9869477983aac87734e19fecd1ad60fb0b13ffe1f1a450ed","affectsGlobalScope":true},"fc37aca06f6b8b296c42412a2e75ab53d30cd1fa8a340a3bb328a723fd678377","5f2c582b9ef260cb9559a64221b38606378c1fabe17694592cdfe5975a6d7efa","cc256fd958b33576ed32c7338c64adb0d08fc0c2c6525010202fab83f32745da","fd20dfa2434a61a87e3fa9450f9de2ed2c365ea43b17b34ac6616d90d9681381","389303117a81e90897689e7adb4b53a062e68a6fe4067088fae9552907aa28c3",{"version":"d4c4fe14b23180acf25e4a68dc3bb9e5c38233dd3de12a4ab9569e636090ac9b","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","fe4a2042d087990ebfc7dc0142d5aaf5a152e4baea86b45f283f103ec1e871ea","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","ca59fe42b81228a317812e95a2e72ccc8c7f1911b5f0c2a032adf41a0161ec5d","9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","ae9930989ed57478eb03b9b80ad3efa7a3eacdfeff0f78ecf7894c4963a64f93","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3e59f00ab03c33717b3130066d4debb272da90eeded4935ff0604c2bc25a5cae","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"2a2e2c6463bcf3c59f31bc9ab4b6ef963bbf7dffb049cd017e2c1834e3adca63","bb5c385d6290f1ad2da7576e186810f23dce6d6bc7fb38ad565a4eb8cfed3541","6571f33cd3c23ee70fb48839c9a7486381cd3f439e17d97d10fc908e41468052","c757372a092924f5c16eaf11a1475b80b95bb4dae49fe3242d2ad908f97d5abe","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","1b23c2aae14c17f361f6fcef69be7a298f47c27724c9a1f891ea52eeea0a9f7f","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","9d9e658d1d5b805562749ce383ef8c67ccb796394d8734d9c138788d7dab6ee3","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","408cc7117448f4994a1f50468648a2d06eff4112a7707dbef6ceea76d2684707","f51c2abd01bb55990a6c5758c8ec34ea7802952c40c30c3941c75eea15539842","8baa5d0febc68db886c40bf341e5c90dc215a90cd64552e47e8184be6b7e3358","74b0245c42990ed8a849df955db3f4362c81b13f799ebc981b7bec2d5b414a57","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","105fa3d1b286795f9ac1b82f5a737db303dfe65ebc9830c1938a2bbe538a861f",{"version":"40bbeaccf39d6ad00da30e96553f0c4aa1b8a87535393c7fdf939170b639c95d","affectsGlobalScope":true},"e65fca93c26b09681d33dad7b3af32ae42bf0d114d859671ffed30a92691439c","105b9a2234dcb06ae922f2cd8297201136d416503ff7d16c72bfc8791e9895c1"],"options":{"composite":true,"declaration":true,"emitDeclarationOnly":true,"esModuleInterop":true,"jsx":1,"module":99,"outDir":"./dist","rootDir":"./src","skipDefaultLibCheck":true,"skipLibCheck":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":3},"fileIdsList":[[200,261,315,316,317],[200,315,316,317],[64,65,66,67,68,69,70,71,72,73,74,75,76,200,315,316,317],[71,200,315,316,317],[200,243,244,315,316,317],[200,241,242,315,316,317],[52,200,315,316,317],[200,221,315,316,317],[200,219,315,316,317],[200,216,217,218,219,220,223,224,225,226,227,228,229,230,315,316,317],[200,215,315,316,317],[200,222,315,316,317],[200,216,217,218,315,316,317],[200,216,217,315,316,317],[200,219,220,222,315,316,317],[200,217,315,316,317],[200,231,232,233,315,316,317],[200,259,315,316,317],[200,261,262,263,264,265,315,316,317],[200,261,263,315,316,317],[173,200,207,267,315,316,317],[188,200,207,315,316,317],[173,200,207,315,316,317],[159,200,207,315,316,317],[200,272,315,316,317],[170,173,200,207,281,282,283,315,316,317],[200,268,283,284,288,315,316,317],[170,171,200,207,291,315,316,317],[171,200,207,315,316,317],[200,294,315,316,317],[117,200,315,316,317],[111,117,200,315,316,317],[112,113,114,115,116,200,315,316,317],[200,297,315,316,317],[200,300,315,316,317],[200,301,315,316,317],[200,307,310,315,316,317],[170,200,202,207,313,314,316,317],[200,315,316],[200,315,317],[200,315,316,317,320,322,323,324,325,326,327,328,329,330,331,332],[200,315,316,317,320,321,323,324,325,326,327,328,329,330,331,332],[200,315,316,317,321,322,323,324,325,326,327,328,329,330,331,332],[200,315,316,317,320,321,322,324,325,326,327,328,329,330,331,332],[200,315,316,317,320,321,322,323,325,326,327,328,329,330,331,332],[200,315,316,317,320,321,322,323,324,326,327,328,329,330,331,332],[200,315,316,317,320,321,322,323,324,325,327,328,329,330,331,332],[200,315,316,317,320,321,322,323,324,325,326,328,329,330,331,332],[200,315,316,317,320,321,322,323,324,325,326,327,329,330,331,332],[200,315,316,317,320,321,322,323,324,325,326,327,328,330,331,332],[200,315,316,317,320,321,322,323,324,325,326,327,328,329,331,332],[200,315,316,317,320,321,322,323,324,325,326,327,328,329,330,332],[200,315,316,317,320,321,322,323,324,325,326,327,328,329,330,331],[200,315,316,317,334,335],[200,286,315,316,317],[200,285,315,316,317],[173,199,200,207,208,209,315,316,317],[173,188,200,207,315,316,317],[154,200,315,316,317],[157,200,315,316,317],[158,163,191,200,315,316,317],[159,170,171,178,188,199,200,315,316,317],[159,160,170,178,200,315,316,317],[161,200,315,316,317],[162,163,171,179,200,315,316,317],[163,188,196,200,315,316,317],[164,166,170,178,200,315,316,317],[165,200,315,316,317],[166,167,200,315,316,317],[170,200,315,316,317],[168,170,200,315,316,317],[170,171,172,188,199,200,315,316,317],[170,171,172,185,188,191,200,315,316,317],[200,204,315,316,317],[166,173,178,188,199,200,315,316,317],[170,171,173,174,178,188,196,199,200,315,316,317],[173,175,188,196,199,200,315,316,317],[154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,315,316,317],[170,176,200,315,316,317],[177,199,200,315,316,317],[166,170,178,188,200,315,316,317],[179,200,315,316,317],[180,200,315,316,317],[157,181,200,315,316,317],[182,198,200,204,315,316,317],[183,200,315,316,317],[184,200,315,316,317],[170,185,186,200,315,316,317],[185,187,200,202,315,316,317],[158,170,188,189,190,191,200,315,316,317],[158,188,190,200,315,316,317],[188,189,200,315,316,317],[191,200,315,316,317],[192,200,315,316,317],[170,194,195,200,315,316,317],[194,195,200,315,316,317],[163,178,188,196,200,315,316,317],[197,200,315,316,317],[178,198,200,315,316,317],[158,173,184,199,200,315,316,317],[163,200,315,316,317],[188,200,201,315,316,317],[200,202,315,316,317],[200,203,315,316,317],[158,163,170,172,181,188,199,200,202,204,315,316,317],[188,200,205,315,316,317],[200,312,315,316,317],[200,313,315,316,317],[51,200,315,316,317],[51,200,233,315,316,317],[51,117,118,200,315,316,317],[51,117,200,315,316,317],[47,48,49,50,200,315,316,317],[200,315,316,317,346,385],[200,315,316,317,346,370,385],[200,315,316,317,385],[200,315,316,317,346],[200,315,316,317,346,371,385],[200,315,316,317,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384],[200,315,316,317,371,385],[171,188,200,207,280,315,316,317],[173,200,207,286,287,315,316,317],[200,311,315,316,317],[200,315,316,317,389],[200,303,309,315,316,317],[200,307,315,316,317],[200,304,308,315,316,317],[200,306,315,316,317],[200,305,315,316,317],[51,123,200,315,316,317],[51,121,123,200,315,316,317],[51,126,200,315,316,317],[126,200,315,316,317],[123,200,315,316,317],[123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,200,315,316,317],[51,121,122,200,256,315,316,317],[51,78,83,200,315,316,317],[51,93,200,315,316,317],[51,78,200,315,316,317],[78,200,315,316,317],[93,200,315,316,317],[78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,97,98,99,100,101,200,315,316,317],[77,78,200,315,316,317],[96,200,315,316,317],[78,90,200,315,316,317],[93,96,200,315,316,317],[77,200,315,316,317],[59,62,200,315,316,317],[59,106,200,315,316,317],[56,106,200,315,316,317],[56,200,315,316,317],[61,200,210,315,316,317],[59,63,200,210,315,316,317],[60,200,315,316,317],[60,61,62,200,315,316,317],[59,200,315,316,317],[51,53,55,200,234,315,316,317],[51,149,200,315,316,317],[51,53,54,200,315,316,317],[104,200,315,316,317],[51,59,102,105,200,234,315,316,317],[102,103,200,315,316,317],[62,103,104,200,315,316,317],[58,59,102,200,315,316,317],[51,107,144,200,234,315,316,317],[51,107,143,200,234,315,316,317],[142,146,147,200,245,315,316,317],[51,145,146,200,234,315,316,317],[51,119,142,144,145,200,234,315,316,317],[142,145,147,148,200,245,315,316,317],[51,107,200,315,316,317],[51,107,143,200,315,316,317],[51,108,200,234,315,316,317],[51,102,109,200,234,315,316,317],[51,110,200,234,315,316,317],[51,119,120,200,234,315,316,317],[51,140,141,145,200,234,315,316,317],[107,108,109,110,120,141,200,315,316,317],[51,107,200,256,315,316,317],[51,102,107,200,315,316,317],[51,107,117,119,200,315,316,317],[51,77,107,140,200,315,316,317],[51,107,142,146,200,315,316,317],[51,107,145,200,315,316,317],[51,107,144,200,315,316,317],[142,145,200,315,316,317],[54,55,59,60,63,103,105,106,107,142,145,146,147,148,200,315,316,317],[58,59,200,315,316,317],[56,57,58,200,315,316,317],[60],[59],[51],[51,54],[102,103],[103],[58,59,102],[51,107],[102,107,117,256],[107,256],[51,102,107],[107],[51,107,117,119],[51,107,142],[51,102,107,117,256],[54,55,59,60,63,103,105,106,107,142,145,146,147,148],[58],[56,58],[56]],"referencedMap":[[263,1],[261,2],[303,2],[64,2],[65,2],[67,2],[66,2],[68,2],[69,2],[77,3],[70,2],[72,4],[73,2],[76,4],[74,2],[71,2],[75,2],[244,2],[245,5],[243,6],[241,2],[242,2],[53,7],[222,8],[221,2],[229,2],[226,2],[225,2],[220,9],[231,10],[216,11],[227,12],[219,13],[218,14],[228,2],[223,15],[230,2],[224,16],[217,2],[234,17],[260,18],[215,2],[266,19],[262,1],[264,20],[265,1],[268,21],[269,2],[270,22],[267,23],[271,24],[273,25],[274,2],[275,2],[276,2],[277,2],[278,2],[279,18],[259,2],[284,26],[289,27],[290,2],[292,28],[293,29],[295,30],[111,2],[115,31],[116,31],[112,32],[113,32],[114,32],[117,33],[296,2],[287,2],[298,34],[297,2],[299,2],[300,2],[301,35],[302,36],[311,37],[315,38],[317,39],[316,40],[318,2],[319,2],[321,41],[322,42],[320,43],[323,44],[324,45],[325,46],[326,47],[327,48],[328,49],[329,50],[330,51],[331,52],[332,53],[333,30],[335,54],[334,2],[336,2],[285,55],[286,56],[291,2],[337,2],[272,2],[338,30],[209,2],[210,57],[208,58],[154,59],[155,59],[157,60],[158,61],[159,62],[160,63],[161,64],[162,65],[163,66],[164,67],[165,68],[166,69],[167,69],[169,70],[168,71],[170,70],[171,72],[172,73],[156,74],[206,2],[173,75],[174,76],[175,77],[207,78],[176,79],[177,80],[178,81],[179,82],[180,83],[181,84],[182,85],[183,86],[184,87],[185,88],[186,88],[187,89],[188,90],[190,91],[189,92],[191,93],[192,94],[193,2],[194,95],[195,96],[196,97],[197,98],[198,99],[199,100],[200,101],[201,102],[202,103],[203,104],[204,105],[205,106],[339,2],[313,107],[312,108],[340,2],[341,2],[49,2],[283,2],[282,2],[232,109],[233,110],[119,111],[118,112],[342,109],[343,109],[47,2],[51,113],[344,2],[345,2],[50,2],[370,114],[371,115],[346,116],[349,116],[368,114],[369,114],[359,114],[358,117],[356,114],[351,114],[364,114],[362,114],[366,114],[350,114],[363,114],[367,114],[352,114],[353,114],[365,114],[347,114],[354,114],[355,114],[357,114],[361,114],[372,118],[360,114],[348,114],[385,119],[384,2],[379,118],[381,120],[380,118],[373,118],[374,118],[376,118],[378,118],[382,120],[383,120],[375,120],[377,120],[281,121],[280,2],[288,122],[386,2],[387,2],[388,123],[314,2],[294,2],[389,2],[390,124],[304,2],[48,2],[310,125],[308,126],[309,127],[307,128],[306,129],[305,2],[52,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[128,130],[126,109],[139,109],[124,131],[129,130],[125,130],[127,132],[133,2],[134,2],[135,109],[136,2],[137,2],[138,133],[132,134],[140,135],[130,130],[121,2],[131,2],[123,136],[122,109],[84,137],[99,138],[85,139],[82,109],[88,140],[100,141],[83,140],[87,140],[89,140],[102,142],[86,143],[95,2],[94,141],[101,143],[93,2],[97,144],[96,2],[79,140],[81,2],[80,140],[90,140],[91,145],[92,140],[98,146],[78,147],[150,148],[151,149],[152,150],[153,151],[211,152],[212,153],[61,154],[63,155],[60,156],[235,157],[213,158],[214,158],[55,159],[54,109],[236,160],[237,161],[238,161],[104,162],[105,163],[103,164],[239,165],[240,166],[246,167],[247,168],[248,169],[249,170],[250,171],[144,172],[143,171],[251,173],[252,174],[253,175],[254,176],[255,177],[142,178],[108,179],[109,180],[110,171],[120,181],[141,182],[147,183],[146,184],[145,185],[148,186],[107,109],[149,187],[62,188],[59,189],[57,2],[106,151],[56,2],[58,156],[256,109],[257,2],[258,2]],"exportedModulesMap":[[263,1],[261,2],[303,2],[64,2],[65,2],[67,2],[66,2],[68,2],[69,2],[77,3],[70,2],[72,4],[73,2],[76,4],[74,2],[71,2],[75,2],[244,2],[245,5],[243,6],[241,2],[242,2],[53,7],[222,8],[221,2],[229,2],[226,2],[225,2],[220,9],[231,10],[216,11],[227,12],[219,13],[218,14],[228,2],[223,15],[230,2],[224,16],[217,2],[234,17],[260,18],[215,2],[266,19],[262,1],[264,20],[265,1],[268,21],[269,2],[270,22],[267,23],[271,24],[273,25],[274,2],[275,2],[276,2],[277,2],[278,2],[279,18],[259,2],[284,26],[289,27],[290,2],[292,28],[293,29],[295,30],[111,2],[115,31],[116,31],[112,32],[113,32],[114,32],[117,33],[296,2],[287,2],[298,34],[297,2],[299,2],[300,2],[301,35],[302,36],[311,37],[315,38],[317,39],[316,40],[318,2],[319,2],[321,41],[322,42],[320,43],[323,44],[324,45],[325,46],[326,47],[327,48],[328,49],[329,50],[330,51],[331,52],[332,53],[333,30],[335,54],[334,2],[336,2],[285,55],[286,56],[291,2],[337,2],[272,2],[338,30],[209,2],[210,57],[208,58],[154,59],[155,59],[157,60],[158,61],[159,62],[160,63],[161,64],[162,65],[163,66],[164,67],[165,68],[166,69],[167,69],[169,70],[168,71],[170,70],[171,72],[172,73],[156,74],[206,2],[173,75],[174,76],[175,77],[207,78],[176,79],[177,80],[178,81],[179,82],[180,83],[181,84],[182,85],[183,86],[184,87],[185,88],[186,88],[187,89],[188,90],[190,91],[189,92],[191,93],[192,94],[193,2],[194,95],[195,96],[196,97],[197,98],[198,99],[199,100],[200,101],[201,102],[202,103],[203,104],[204,105],[205,106],[339,2],[313,107],[312,108],[340,2],[341,2],[49,2],[283,2],[282,2],[232,109],[233,110],[119,111],[118,112],[342,109],[343,109],[47,2],[51,113],[344,2],[345,2],[50,2],[370,114],[371,115],[346,116],[349,116],[368,114],[369,114],[359,114],[358,117],[356,114],[351,114],[364,114],[362,114],[366,114],[350,114],[363,114],[367,114],[352,114],[353,114],[365,114],[347,114],[354,114],[355,114],[357,114],[361,114],[372,118],[360,114],[348,114],[385,119],[384,2],[379,118],[381,120],[380,118],[373,118],[374,118],[376,118],[378,118],[382,120],[383,120],[375,120],[377,120],[281,121],[280,2],[288,122],[386,2],[387,2],[388,123],[314,2],[294,2],[389,2],[390,124],[304,2],[48,2],[310,125],[308,126],[309,127],[307,128],[306,129],[305,2],[52,2],[8,2],[9,2],[13,2],[12,2],[2,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[20,2],[21,2],[3,2],[46,2],[4,2],[25,2],[22,2],[23,2],[24,2],[26,2],[27,2],[28,2],[5,2],[29,2],[30,2],[31,2],[32,2],[6,2],[36,2],[33,2],[34,2],[35,2],[37,2],[7,2],[38,2],[43,2],[44,2],[39,2],[40,2],[41,2],[42,2],[1,2],[45,2],[11,2],[10,2],[128,130],[126,109],[139,109],[124,131],[129,130],[125,130],[127,132],[133,2],[134,2],[135,109],[136,2],[137,2],[138,133],[132,134],[140,135],[130,130],[121,2],[131,2],[123,136],[122,109],[84,137],[99,138],[85,139],[82,109],[88,140],[100,141],[83,140],[87,140],[89,140],[102,142],[86,143],[95,2],[94,141],[101,143],[93,2],[97,144],[96,2],[79,140],[81,2],[80,140],[90,140],[91,145],[92,140],[98,146],[78,147],[61,190],[63,190],[60,191],[213,192],[214,192],[55,193],[54,192],[104,194],[105,195],[103,196],[144,197],[143,197],[142,198],[108,199],[109,200],[110,201],[120,202],[141,201],[147,203],[146,197],[145,197],[148,204],[107,192],[149,205],[62,206],[59,207],[106,208],[58,191],[256,109],[257,2],[258,2]],"semanticDiagnosticsPerFile":[263,261,303,64,65,67,66,68,69,77,70,72,73,76,74,71,75,244,245,243,241,242,53,222,221,229,226,225,220,231,216,227,219,218,228,223,230,224,217,234,260,215,266,262,264,265,268,269,270,267,271,273,274,275,276,277,278,279,259,284,289,290,292,293,295,111,115,116,112,113,114,117,296,287,298,297,299,300,301,302,311,315,317,316,318,319,321,322,320,323,324,325,326,327,328,329,330,331,332,333,335,334,336,285,286,291,337,272,338,209,210,208,154,155,157,158,159,160,161,162,163,164,165,166,167,169,168,170,171,172,156,206,173,174,175,207,176,177,178,179,180,181,182,183,184,185,186,187,188,190,189,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,339,313,312,340,341,49,283,282,232,233,119,118,342,343,47,51,344,345,50,370,371,346,349,368,369,359,358,356,351,364,362,366,350,363,367,352,353,365,347,354,355,357,361,372,360,348,385,384,379,381,380,373,374,376,378,382,383,375,377,281,280,288,386,387,388,314,294,389,390,304,48,310,308,309,307,306,305,52,8,9,13,12,2,14,15,16,17,18,19,20,21,3,46,4,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,128,126,139,124,129,125,127,133,134,135,136,137,138,132,140,130,121,131,123,122,84,99,85,82,88,100,83,87,89,102,86,95,94,101,93,97,96,79,81,80,90,91,92,98,78,150,151,152,153,211,212,61,63,60,235,213,214,55,54,236,237,238,104,105,103,239,240,246,247,248,249,250,144,143,251,252,253,254,255,142,108,109,110,120,141,147,146,145,148,107,149,62,59,57,106,56,58,256,257,258],"latestChangedDtsFile":"./dist/harness/adapters/__tests__/ssr.test.d.ts"},"version":"4.9.5"}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import type { TestHarnessConfigs, TestHarnessAdapters } from "./types";
|
|
3
|
-
/**
|
|
4
|
-
* Render test adapters around a child component.
|
|
5
|
-
*/
|
|
6
|
-
export declare const renderAdapters: <TAdapters extends TestHarnessAdapters>(adapters: TAdapters, configs: TestHarnessConfigs<TAdapters>, children: React.ReactNode) => React.ReactElement;
|
|
@@ -1,97 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
import {renderAdapters} from "../render-adapters";
|
|
3
|
-
|
|
4
|
-
import type {TestHarnessAdapter, TestHarnessConfigs} from "../types";
|
|
5
|
-
|
|
6
|
-
describe("#renderAdapters", () => {
|
|
7
|
-
it("should render children if no adapters", () => {
|
|
8
|
-
// Arrange
|
|
9
|
-
const children = <div>Adapt me!</div>;
|
|
10
|
-
|
|
11
|
-
// Act
|
|
12
|
-
const result = renderAdapters({}, {}, children);
|
|
13
|
-
|
|
14
|
-
// Assert
|
|
15
|
-
expect(result).toMatchInlineSnapshot(`
|
|
16
|
-
<React.Fragment>
|
|
17
|
-
<div>
|
|
18
|
-
Adapt me!
|
|
19
|
-
</div>
|
|
20
|
-
</React.Fragment>
|
|
21
|
-
`);
|
|
22
|
-
});
|
|
23
|
-
|
|
24
|
-
it("should invoke the adapter with its corresponding config", () => {
|
|
25
|
-
// Arrange
|
|
26
|
-
const children = <div>Adapt me!</div>;
|
|
27
|
-
const adapters = {
|
|
28
|
-
adapterA: jest.fn() as TestHarnessAdapter<string>,
|
|
29
|
-
} as const;
|
|
30
|
-
const configs: TestHarnessConfigs<typeof adapters> = {
|
|
31
|
-
adapterA: "APPLY A CONFIG",
|
|
32
|
-
};
|
|
33
|
-
|
|
34
|
-
// Act
|
|
35
|
-
renderAdapters(adapters, configs, children);
|
|
36
|
-
|
|
37
|
-
// Assert
|
|
38
|
-
expect(adapters.adapterA).toHaveBeenCalledWith(
|
|
39
|
-
children,
|
|
40
|
-
"APPLY A CONFIG",
|
|
41
|
-
);
|
|
42
|
-
});
|
|
43
|
-
|
|
44
|
-
it("should render each adapter and the children", () => {
|
|
45
|
-
// Arrange
|
|
46
|
-
const children = "Adapt me!";
|
|
47
|
-
const adapter: TestHarnessAdapter<string> = (c: any, conf: any) =>
|
|
48
|
-
`${conf}:${c}` as any;
|
|
49
|
-
const adapters = {
|
|
50
|
-
adapterA: adapter,
|
|
51
|
-
adapterB: adapter,
|
|
52
|
-
adapterC: adapter,
|
|
53
|
-
} as const;
|
|
54
|
-
const configs: TestHarnessConfigs<typeof adapters> = {
|
|
55
|
-
adapterA: "A",
|
|
56
|
-
adapterB: "B",
|
|
57
|
-
adapterC: "C",
|
|
58
|
-
};
|
|
59
|
-
|
|
60
|
-
// Act
|
|
61
|
-
const result = renderAdapters(adapters, configs, children);
|
|
62
|
-
|
|
63
|
-
// Assert
|
|
64
|
-
expect(result).toMatchInlineSnapshot(`
|
|
65
|
-
<React.Fragment>
|
|
66
|
-
C:B:A:Adapt me!
|
|
67
|
-
</React.Fragment>
|
|
68
|
-
`);
|
|
69
|
-
});
|
|
70
|
-
|
|
71
|
-
it("should skip adapters where the corresponding config is null", () => {
|
|
72
|
-
// Arrange
|
|
73
|
-
const children = "Adapt me!";
|
|
74
|
-
const adapter: TestHarnessAdapter<string> = (c: any, conf: any) =>
|
|
75
|
-
`${conf}:${c}` as any;
|
|
76
|
-
const adapters = {
|
|
77
|
-
adapterA: adapter,
|
|
78
|
-
adapterB: adapter,
|
|
79
|
-
adapterC: adapter,
|
|
80
|
-
} as const;
|
|
81
|
-
const configs: TestHarnessConfigs<typeof adapters> = {
|
|
82
|
-
adapterA: "A",
|
|
83
|
-
adapterB: null,
|
|
84
|
-
adapterC: "C",
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
// Act
|
|
88
|
-
const result = renderAdapters(adapters, configs, children);
|
|
89
|
-
|
|
90
|
-
// Assert
|
|
91
|
-
expect(result).toMatchInlineSnapshot(`
|
|
92
|
-
<React.Fragment>
|
|
93
|
-
C:A:Adapt me!
|
|
94
|
-
</React.Fragment>
|
|
95
|
-
`);
|
|
96
|
-
});
|
|
97
|
-
});
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import * as React from "react";
|
|
2
|
-
|
|
3
|
-
import type {TestHarnessConfigs, TestHarnessAdapters} from "./types";
|
|
4
|
-
|
|
5
|
-
/**
|
|
6
|
-
* Render test adapters around a child component.
|
|
7
|
-
*/
|
|
8
|
-
export const renderAdapters = <TAdapters extends TestHarnessAdapters>(
|
|
9
|
-
adapters: TAdapters,
|
|
10
|
-
configs: TestHarnessConfigs<TAdapters>,
|
|
11
|
-
children: React.ReactNode,
|
|
12
|
-
): React.ReactElement => {
|
|
13
|
-
let currentChildren = children;
|
|
14
|
-
for (const adapterName of Object.keys(adapters)) {
|
|
15
|
-
const adapter = adapters[adapterName];
|
|
16
|
-
const config = configs[adapterName];
|
|
17
|
-
/**
|
|
18
|
-
* Some adapters support a null config, some don't, either way
|
|
19
|
-
* we always assume that null config means no adapter.
|
|
20
|
-
*/
|
|
21
|
-
if (config != null) {
|
|
22
|
-
currentChildren = adapter(currentChildren, config);
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
return <>{currentChildren}</>;
|
|
26
|
-
};
|