Skip to content

Commit 93095a1

Browse files
committed
Don't add collection "vendor" in test running
1 parent f0744a6 commit 93095a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editors/vscode/src/commands.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export function runDebugTest(ctx: Ctx): Cmd {
2323
for(var i = 0; i < ctx.config.collections.length; i++) {
2424
const name = ctx.config.collections[i].name;
2525
const path = ctx.config.collections[i].path;
26-
if(name === "core") {
26+
if(name === "core" || name === "vendor") {
2727
continue;
2828
}
2929
args.push(`-collection:${name}=${path}`);

0 commit comments

Comments
 (0)