chore: remove generate_test tool for now - it adds no value (#675)

This commit is contained in:
Pavel Feldman 2025-07-16 13:33:05 -07:00 committed by GitHub
parent 3061d9aa56
commit 825a97d66e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 0 additions and 92 deletions

View file

@ -26,7 +26,6 @@ import pdf from './tools/pdf.js';
import snapshot from './tools/snapshot.js';
import tabs from './tools/tabs.js';
import screenshot from './tools/screenshot.js';
import testing from './tools/testing.js';
import vision from './tools/vision.js';
import wait from './tools/wait.js';
@ -45,7 +44,6 @@ export const snapshotTools: Tool<any>[] = [
...screenshot,
...snapshot,
...tabs(true),
...testing,
...wait(true),
];
@ -60,7 +58,6 @@ export const visionTools: Tool<any>[] = [
...network,
...pdf,
...tabs(false),
...testing,
...vision,
...wait(false),
];