@khanacademy/wonder-blocks-testing 15.1.8 → 16.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 +24 -0
- package/dist/es/index.js +1 -1
- package/dist/index.d.ts +0 -2
- package/dist/index.js +0 -4
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-testing
|
|
2
2
|
|
|
3
|
+
## 16.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4c03506: Upgrade wonder-blocks infrastructure to use Storybook v9
|
|
8
|
+
- 4c03506: Remove storybook dependency - no longer used.
|
|
9
|
+
- Updated dependencies [4c03506]
|
|
10
|
+
- @khanacademy/wonder-blocks-testing-core@4.0.1
|
|
11
|
+
- @khanacademy/wonder-blocks-core@12.4.0
|
|
12
|
+
- @khanacademy/wonder-blocks-data@14.1.6
|
|
13
|
+
|
|
14
|
+
## 16.0.0
|
|
15
|
+
|
|
16
|
+
### Major Changes
|
|
17
|
+
|
|
18
|
+
- 82b5970: Removed Fixtures framework - please use the native Storybook CSFv3 format for stories
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [82b5970]
|
|
23
|
+
- @khanacademy/wonder-blocks-testing-core@4.0.0
|
|
24
|
+
- @khanacademy/wonder-blocks-core@12.4.0
|
|
25
|
+
- @khanacademy/wonder-blocks-data@14.1.6
|
|
26
|
+
|
|
3
27
|
## 15.1.8
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/dist/es/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { mockRequester, harnessAdapters } from '@khanacademy/wonder-blocks-testing-core';
|
|
2
|
-
export { RespondWith, SettleController,
|
|
2
|
+
export { RespondWith, SettleController, hookHarness, makeHookHarness, makeTestHarness, mockFetch, renderHookStatic, testHarness } from '@khanacademy/wonder-blocks-testing-core';
|
|
3
3
|
import { jsx, Fragment } from 'react/jsx-runtime';
|
|
4
4
|
import 'react';
|
|
5
5
|
import { InterceptRequests } from '@khanacademy/wonder-blocks-data';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
export { fixtures } from "@khanacademy/wonder-blocks-testing-core";
|
|
2
|
-
export type { FixtureFn, FixtureProps, GetPropsOptions, } from "@khanacademy/wonder-blocks-testing-core";
|
|
3
1
|
export { mockFetch, RespondWith, SettleController, } from "@khanacademy/wonder-blocks-testing-core";
|
|
4
2
|
export { mockGqlFetch } from "./gql/mock-gql-fetch";
|
|
5
3
|
export type { MockResponse, FetchMockFn, FetchMockOperation, } from "@khanacademy/wonder-blocks-testing-core";
|
package/dist/index.js
CHANGED
|
@@ -35,10 +35,6 @@ Object.defineProperty(exports, 'SettleController', {
|
|
|
35
35
|
enumerable: true,
|
|
36
36
|
get: function () { return wonderBlocksTestingCore.SettleController; }
|
|
37
37
|
});
|
|
38
|
-
Object.defineProperty(exports, 'fixtures', {
|
|
39
|
-
enumerable: true,
|
|
40
|
-
get: function () { return wonderBlocksTestingCore.fixtures; }
|
|
41
|
-
});
|
|
42
38
|
Object.defineProperty(exports, 'hookHarness', {
|
|
43
39
|
enumerable: true,
|
|
44
40
|
get: function () { return wonderBlocksTestingCore.hookHarness; }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@khanacademy/wonder-blocks-testing",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "16.0.1",
|
|
4
4
|
"design": "v1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -10,13 +10,12 @@
|
|
|
10
10
|
"module": "dist/es/index.js",
|
|
11
11
|
"types": "dist/index.d.ts",
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@khanacademy/wonder-blocks-core": "12.4.0",
|
|
14
13
|
"@khanacademy/wonder-blocks-data": "14.1.6",
|
|
15
|
-
"@khanacademy/wonder-blocks-testing-core": "
|
|
14
|
+
"@khanacademy/wonder-blocks-testing-core": "4.0.1",
|
|
15
|
+
"@khanacademy/wonder-blocks-core": "12.4.0"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {
|
|
18
18
|
"@khanacademy/wonder-stuff-core": "^1.5.4",
|
|
19
|
-
"@storybook/addon-actions": "^8.5.2",
|
|
20
19
|
"aphrodite": "^1.2.5",
|
|
21
20
|
"node-fetch": "^2.6.7",
|
|
22
21
|
"react": "18.2.0",
|