Skip to content
This repository was archived by the owner on Nov 23, 2019. It is now read-only.

Commit d185db1

Browse files
authored
fix(test): use singleRun:true for karma tests (#58)
This allows us to run tests from the release script, so that they don't infinitely wait when `yarn np` invokes `yarn test`.
1 parent 4e4de47 commit d185db1

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

karma.conf.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ module.exports = function(config) {
99
files: [
1010
'test/**/*.test.js'
1111
],
12+
1213
browsers: ['PhantomJS'],
1314

15+
singleRun: true,
16+
1417
middleware: ['server'],
1518

1619
plugins: [

0 commit comments

Comments
 (0)