@khanacademy/wonder-blocks-testing 12.0.0 → 12.0.1

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 CHANGED
@@ -1,5 +1,15 @@
1
1
  # @khanacademy/wonder-blocks-testing
2
2
 
3
+ ## 12.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 02a1b298: Make sure we don't package tsconfig and tsbuildinfo files
8
+ - Updated dependencies [02a1b298]
9
+ - @khanacademy/wonder-blocks-core@7.0.1
10
+ - @khanacademy/wonder-blocks-data@13.0.12
11
+ - @khanacademy/wonder-blocks-testing-core@1.0.2
12
+
3
13
  ## 12.0.0
4
14
 
5
15
  ### Major Changes
package/package.json CHANGED
@@ -1,36 +1,36 @@
1
1
  {
2
- "name": "@khanacademy/wonder-blocks-testing",
3
- "version": "12.0.0",
4
- "design": "v1",
5
- "publishConfig": {
6
- "access": "public"
7
- },
8
- "description": "",
9
- "main": "dist/index.js",
10
- "module": "dist/es/index.js",
11
- "types": "dist/index.d.ts",
12
- "scripts": {
13
- "test": "echo \"Error: no test specified\" && exit 1"
14
- },
15
- "dependencies": {
16
- "@babel/runtime": "^7.18.6",
17
- "@khanacademy/wonder-blocks-core": "^7.0.0",
18
- "@khanacademy/wonder-blocks-data": "^13.0.11",
19
- "@khanacademy/wonder-blocks-testing-core": "^1.0.1"
20
- },
21
- "peerDependencies": {
22
- "@khanacademy/wonder-stuff-core": "^1.2.2",
23
- "@storybook/addon-actions": "^7.0.0",
24
- "aphrodite": "^1.2.5",
25
- "node-fetch": "^2.6.7",
26
- "react": "16.14.0",
27
- "react-dom": "16.14.0",
28
- "react-router-dom": "5.3.0"
29
- },
30
- "devDependencies": {
31
- "@khanacademy/wb-dev-build-settings": "^1.0.1",
32
- "@khanacademy/wonder-stuff-testing": "^3.0.1"
33
- },
34
- "author": "",
35
- "license": "MIT"
36
- }
2
+ "name": "@khanacademy/wonder-blocks-testing",
3
+ "version": "12.0.1",
4
+ "design": "v1",
5
+ "publishConfig": {
6
+ "access": "public"
7
+ },
8
+ "description": "",
9
+ "main": "dist/index.js",
10
+ "module": "dist/es/index.js",
11
+ "types": "dist/index.d.ts",
12
+ "scripts": {
13
+ "test": "echo \"Error: no test specified\" && exit 1"
14
+ },
15
+ "dependencies": {
16
+ "@babel/runtime": "^7.18.6",
17
+ "@khanacademy/wonder-blocks-core": "^7.0.1",
18
+ "@khanacademy/wonder-blocks-data": "^13.0.12",
19
+ "@khanacademy/wonder-blocks-testing-core": "^1.0.2"
20
+ },
21
+ "peerDependencies": {
22
+ "@khanacademy/wonder-stuff-core": "^1.2.2",
23
+ "@storybook/addon-actions": "^7.0.0",
24
+ "aphrodite": "^1.2.5",
25
+ "node-fetch": "^2.6.7",
26
+ "react": "16.14.0",
27
+ "react-dom": "16.14.0",
28
+ "react-router-dom": "5.3.0"
29
+ },
30
+ "devDependencies": {
31
+ "@khanacademy/wb-dev-build-settings": "^1.0.1",
32
+ "@khanacademy/wonder-stuff-testing": "^3.0.1"
33
+ },
34
+ "author": "",
35
+ "license": "MIT"
36
+ }
@@ -1,234 +0,0 @@
1
- import {gqlRequestMatchesMock} from "../gql-request-matches-mock";
2
-
3
- describe("#gqlRequestMatchesMock", () => {
4
- it("should return false if operation types don't match", () => {
5
- // Arrange
6
- const mock = {
7
- operation: {
8
- id: "foo",
9
- type: "query",
10
- },
11
- } as const;
12
- const operation = {
13
- id: "foo",
14
- type: "mutation",
15
- } as const;
16
-
17
- // Act
18
- const result = gqlRequestMatchesMock(mock, operation, null, {});
19
-
20
- // Assert
21
- expect(result).toBe(false);
22
- });
23
-
24
- it("should return false if operation ids don't match", () => {
25
- // Arrange
26
- const mock = {
27
- operation: {
28
- id: "foo",
29
- type: "query",
30
- },
31
- } as const;
32
-
33
- // Act
34
- const result = gqlRequestMatchesMock(
35
- mock,
36
- {
37
- id: "bar",
38
- type: "query",
39
- },
40
- null,
41
- {},
42
- );
43
-
44
- // Assert
45
- expect(result).toBe(false);
46
- });
47
-
48
- it.each([{foo: "bar"}, {foo: "baz", anExtra: "property"}, null])(
49
- "should return false if variables don't match",
50
- (variables: any) => {
51
- // Arrange
52
- const mock = {
53
- operation: {
54
- id: "foo",
55
- type: "query",
56
- },
57
- variables: {
58
- foo: "baz",
59
- },
60
- } as const;
61
- const operation = {
62
- id: "foo",
63
- type: "query",
64
- } as const;
65
-
66
- // Act
67
- const result = gqlRequestMatchesMock(
68
- mock,
69
- operation,
70
- variables,
71
- {},
72
- );
73
-
74
- // Assert
75
- expect(result).toBe(false);
76
- },
77
- );
78
-
79
- it.each([{a: "context"}, null])(
80
- "should return false if contexts don't match",
81
- (context: any) => {
82
- // Arrange
83
- const mock = {
84
- operation: {
85
- id: "foo",
86
- type: "query",
87
- },
88
- variables: {
89
- foo: "bar",
90
- },
91
- context: {
92
- mock: "context",
93
- },
94
- } as const;
95
- const operation = {
96
- id: "foo",
97
- type: "query",
98
- } as const;
99
- const variables = {
100
- foo: "bar",
101
- } as const;
102
-
103
- // Act
104
- const result = gqlRequestMatchesMock(
105
- mock,
106
- operation,
107
- variables,
108
- context,
109
- );
110
-
111
- // Assert
112
- expect(result).toBe(false);
113
- },
114
- );
115
-
116
- it("should return true if operation matches and mock does not include context nor variables, regardless of comparison operation variables and context", () => {
117
- // Arrange
118
- const mock = {
119
- operation: {
120
- id: "foo",
121
- type: "query",
122
- },
123
- } as const;
124
-
125
- // Act
126
- const result = gqlRequestMatchesMock(
127
- mock,
128
- {
129
- id: "foo",
130
- type: "query",
131
- },
132
- {a: "variable"},
133
- {my: "context"},
134
- );
135
-
136
- // Assert
137
- expect(result).toBe(true);
138
- });
139
-
140
- it("should return true if operation and variables match and there is no mock context", () => {
141
- // Arrange
142
- const mock = {
143
- operation: {
144
- id: "foo",
145
- type: "query",
146
- },
147
- variables: {
148
- foo: "bar",
149
- },
150
- } as const;
151
-
152
- // Act
153
- const result = gqlRequestMatchesMock(
154
- mock,
155
- {
156
- id: "foo",
157
- type: "query",
158
- },
159
- {
160
- foo: "bar",
161
- },
162
- {my: "context"},
163
- );
164
-
165
- // Assert
166
- expect(result).toBe(true);
167
- });
168
-
169
- it("should return true if operation and context match and there are no mock variables", () => {
170
- // Arrange
171
- const mock = {
172
- operation: {
173
- id: "foo",
174
- type: "query",
175
- },
176
- context: {
177
- foo: "bar",
178
- },
179
- } as const;
180
-
181
- // Act
182
- const result = gqlRequestMatchesMock(
183
- mock,
184
- {
185
- id: "foo",
186
- type: "query",
187
- },
188
- {a: "variable"},
189
- {
190
- foo: "bar",
191
- },
192
- );
193
-
194
- // Assert
195
- expect(result).toBe(true);
196
- });
197
-
198
- it("should return true if everything matches", () => {
199
- // Arrange
200
- const mock = {
201
- operation: {
202
- id: "foo",
203
- type: "query",
204
- },
205
- variables: {
206
- foo: "bar",
207
- },
208
- context: {
209
- foo: "bar",
210
- },
211
- } as const;
212
- const operation = {
213
- id: "foo",
214
- type: "query",
215
- } as const;
216
- const variables = {
217
- foo: "bar",
218
- } as const;
219
- const context = {
220
- foo: "bar",
221
- } as const;
222
-
223
- // Act
224
- const result = gqlRequestMatchesMock(
225
- mock,
226
- operation,
227
- {...variables},
228
- {...context},
229
- );
230
-
231
- // Assert
232
- expect(result).toBe(true);
233
- });
234
- });