Skip to content

Commit d0b6c12

Browse files
committed
Ignore phone integration test in catch-all yarn:test
1 parent 2ac24f5 commit d0b6c12

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages-exp/auth-exp/karma.conf.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,13 @@ function getTestFiles(argv) {
3636
} else if (argv.integration) {
3737
return ['test/integration/**/*.test.ts'];
3838
} else {
39-
return ['src/**/*.test.ts', 'test/**/*.test.ts'];
39+
// For the catch-all yarn:test, ignore the phone integration test
40+
return [
41+
'src/**/*.test.ts',
42+
'test/helpers/**/*.test.ts',
43+
'test/integration/flows/anonymous.test.ts',
44+
'test/integration/flows/email.test.ts'
45+
];
4046
}
4147
}
4248

0 commit comments

Comments
 (0)