Skip to content

Commit 71ef0e3

Browse files
committed
DEV temp
1 parent ba0327e commit 71ef0e3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/stdioTransport.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ describe('Tools', () => {
182182
const abs = resolve(process.cwd(), 'tests/__fixtures__/tool.echo.js');
183183
const url = pathToFileURL(abs).href;
184184

185-
CLIENT = await startServer({ args: ['--log-stderr', '--plugin-isolation', 'strict', '--tool', url] });
185+
CLIENT = await startServer({ args: ['--log-stderr', '--verbose', '--plugin-isolation', 'strict', '--tool', url] });
186186
});
187187

188188
afterEach(async () => CLIENT.stop());
@@ -196,8 +196,8 @@ describe('Tools', () => {
196196
const resp = await CLIENT.send(req);
197197
const names = (resp?.result?.tools ?? []).map((tool: any) => tool.name);
198198

199-
expect(names).toContain('echo_plugin_tool');
200199
expect(CLIENT.logs()).toMatchSnapshot();
200+
expect(names).toContain('echo_plugin_tool');
201201
});
202202

203203
it('should interact with the new tool', async () => {

0 commit comments

Comments
 (0)