We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e8118a commit 61a7670Copy full SHA for 61a7670
packages/compass-e2e-tests/index.ts
@@ -54,7 +54,7 @@ async function main() {
54
const e2eTestGroup = context.testGroup;
55
const e2eTestFilter = context.testFilter;
56
57
- const tests = (
+ let tests = (
58
await glob(`tests/**/${e2eTestFilter}.{test,spec}.ts`, {
59
cwd: __dirname,
60
})
@@ -82,6 +82,8 @@ async function main() {
82
}
83
});
84
85
+ tests = tests.filter((test) => test === 'tests/no-network-traffic.test.ts');
86
+
87
debug('Test files:', tests);
88
89
if (tests.length === 0) {
0 commit comments