We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 311c67b commit a592237Copy full SHA for a592237
1 file changed
packages/usdk/test/basic.test.tsx
@@ -6,7 +6,7 @@ import { mkdirp } from 'mkdirp';
6
import { rimraf } from 'rimraf';
7
8
import React from 'react';
9
-import { createRoot } from 'react-agents';
+import { createRoot, Agent } from 'react-agents';
10
import * as codecs from 'codecs/ws-codec-runtime-fs.mjs';
11
12
const registryHash = `f3689d8c6118c97390779a3322ebca8c61a34a2d`;
@@ -106,7 +106,8 @@ test('createRoot', async () => {
106
codecs,
107
};
108
const root = createRoot(state);
109
- root.render(<></>);
+ const { agents } = await root.render(<Agent />);
110
+ console.log('agents', agents);
111
112
if (++i >= numPlugins) {
113
break;
0 commit comments