Skip to content

Commit

Permalink
Don't add collection "vendor" in test running
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielGavin committed Dec 3, 2023
1 parent f0744a6 commit 93095a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editors/vscode/src/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
Expand Down

0 comments on commit 93095a1

Please sign in to comment.