@player-ui/reference-assets-plugin-react 0.10.0-next.1 → 0.10.0-next.11

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/package.json CHANGED
@@ -6,13 +6,13 @@
6
6
  "types"
7
7
  ],
8
8
  "name": "@player-ui/reference-assets-plugin-react",
9
- "version": "0.10.0-next.1",
9
+ "version": "0.10.0-next.11",
10
10
  "main": "dist/cjs/index.cjs",
11
11
  "dependencies": {
12
- "@player-ui/asset-provider-plugin-react": "0.10.0-next.1",
13
- "@player-ui/beacon-plugin-react": "0.10.0-next.1",
14
- "@player-ui/partial-match-registry": "0.10.0-next.1",
15
- "@player-ui/reference-assets-plugin": "0.10.0-next.1",
12
+ "@player-ui/asset-provider-plugin-react": "0.10.0-next.11",
13
+ "@player-ui/beacon-plugin-react": "0.10.0-next.11",
14
+ "@player-ui/partial-match-registry": "0.10.0-next.11",
15
+ "@player-ui/reference-assets-plugin": "0.10.0-next.11",
16
16
  "@radix-ui/react-label": "^2.0.2",
17
17
  "@radix-ui/react-separator": "^1.0.3",
18
18
  "@radix-ui/react-slot": "^1.0.2",
@@ -26,7 +26,7 @@
26
26
  "@player-ui/make-flow": "workspace:*"
27
27
  },
28
28
  "peerDependencies": {
29
- "@player-ui/react": "0.10.0-next.1",
29
+ "@player-ui/react": "0.10.0-next.11",
30
30
  "react": "^18.2.0",
31
31
  "@types/react": "^18.2.39"
32
32
  },
@@ -149,8 +149,10 @@ describe("Integration tests", () => {
149
149
  fireEvent.click(itemNode);
150
150
  });
151
151
 
152
- itemNode = await screen.findByTestId(item.id);
153
- expect(itemNode.checked).toEqual(true);
152
+ await waitFor(async () => {
153
+ itemNode = await screen.findByTestId(item.id);
154
+ expect(itemNode.checked).toEqual(true);
155
+ });
154
156
  }
155
157
  });
156
158
  });