Skip to content

Commit 61a7670

Browse files
run just one test
1 parent 9e8118a commit 61a7670

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/compass-e2e-tests/index.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ async function main() {
5454
const e2eTestGroup = context.testGroup;
5555
const e2eTestFilter = context.testFilter;
5656

57-
const tests = (
57+
let tests = (
5858
await glob(`tests/**/${e2eTestFilter}.{test,spec}.ts`, {
5959
cwd: __dirname,
6060
})
@@ -82,6 +82,8 @@ async function main() {
8282
}
8383
});
8484

85+
tests = tests.filter((test) => test === 'tests/no-network-traffic.test.ts');
86+
8587
debug('Test files:', tests);
8688

8789
if (tests.length === 0) {

0 commit comments

Comments
 (0)