diff --git a/.vscode/launch.json b/.vscode/launch.json index 8f132cbe5c..97e3c8c0e3 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -37,7 +37,8 @@ "src/index.node.ts", "--timeout", "5000", - "integration/**/*.test.ts" + "integration/**/*.test.ts", + "--grep", "${input:grepString}", ], "env": { "TS_NODE_COMPILER_OPTIONS": "{\"module\":\"commonjs\"}" @@ -184,5 +185,13 @@ "cwd": "${workspaceRoot}/packages/firestore", "args": ["start", "--auto-watch", "--integration", "--browsers", "Chrome"] } + ], + "inputs": [ + { + "id": "grepString", + "type": "promptString", + "description": "Enter grep pattern (e.g., 'Google AI gemini-2.0-flash generateContent')", + "default": "" + } ] }