diff options
| author | DanielGavin <danielgavin5@hotmail.com> | 2023-12-03 12:55:12 +0100 |
|---|---|---|
| committer | DanielGavin <danielgavin5@hotmail.com> | 2023-12-03 12:55:12 +0100 |
| commit | 93095a186e483b1fb33f7166382caf3c4e301441 (patch) | |
| tree | 444d75209edf5ecef7ad3e5129c798bdb72aec6f | |
| parent | f0744a676a1806cbb7ffd55ad657163fc73e83e0 (diff) | |
Don't add collection "vendor" in test running
| -rw-r--r-- | editors/vscode/src/commands.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/vscode/src/commands.ts b/editors/vscode/src/commands.ts index f1f617f..ea0ab12 100644 --- a/editors/vscode/src/commands.ts +++ b/editors/vscode/src/commands.ts @@ -23,7 +23,7 @@ export function runDebugTest(ctx: Ctx): Cmd { for(var i = 0; i < ctx.config.collections.length; i++) { const name = ctx.config.collections[i].name; const path = ctx.config.collections[i].path; - if(name === "core") { + if(name === "core" || name === "vendor") { continue; } args.push(`-collection:${name}=${path}`); |