@khanacademy/wonder-blocks-data 10.0.1 → 10.0.3

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,20 @@
1
1
  # @khanacademy/wonder-blocks-data
2
2
 
3
+ ## 10.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - @khanacademy/wonder-blocks-core@4.6.1
8
+
9
+ ## 10.0.2
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies [b561425a]
14
+ - Updated dependencies [a566e232]
15
+ - Updated dependencies [d2b21a6e]
16
+ - @khanacademy/wonder-blocks-core@4.6.0
17
+
3
18
  ## 10.0.1
4
19
 
5
20
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@khanacademy/wonder-blocks-data",
3
- "version": "10.0.1",
3
+ "version": "10.0.3",
4
4
  "design": "v1",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "dependencies": {
16
16
  "@babel/runtime": "^7.18.6",
17
- "@khanacademy/wonder-blocks-core": "^4.5.0"
17
+ "@khanacademy/wonder-blocks-core": "^4.6.1"
18
18
  },
19
19
  "peerDependencies": {
20
20
  "@khanacademy/wonder-stuff-core": "^1.0.1",
@@ -22,7 +22,7 @@
22
22
  "react": "16.14.0"
23
23
  },
24
24
  "devDependencies": {
25
- "wb-dev-build-settings": "^0.4.0"
25
+ "wb-dev-build-settings": "^0.6.0"
26
26
  },
27
27
  "author": "",
28
28
  "license": "MIT"
@@ -1,7 +1,6 @@
1
1
  // @flow
2
2
  import * as React from "react";
3
- import {mount} from "enzyme";
4
- import "jest-enzyme";
3
+ import {render} from "@testing-library/react";
5
4
 
6
5
  import {Server} from "@khanacademy/wonder-blocks-core";
7
6
  import {RequestTracker, TrackerContext} from "../request-tracking.js";
@@ -14,7 +13,7 @@ describe("../request-tracking.js", () => {
14
13
 
15
14
  // Act
16
15
  const result = await new Promise((resolve, reject) => {
17
- mount(
16
+ render(
18
17
  <TrackerContext.Consumer>
19
18
  {(fn) => resolve(fn)}
20
19
  </TrackerContext.Consumer>,