aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2023-12-03 12:55:12 +0100
committerDanielGavin <danielgavin5@hotmail.com>2023-12-03 12:55:12 +0100
commit93095a186e483b1fb33f7166382caf3c4e301441 (patch)
tree444d75209edf5ecef7ad3e5129c798bdb72aec6f
parentf0744a676a1806cbb7ffd55ad657163fc73e83e0 (diff)
Don't add collection "vendor" in test running
-rw-r--r--editors/vscode/src/commands.ts2
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}`);