Skip to content

Commit

Permalink
chore(karma.config.js): set singleRun to true for all runtimes
Browse files Browse the repository at this point in the history
Set singleRun option in karma to true locally and in CI so the test process always terminates when
finished
  • Loading branch information
AtofStryker committed Aug 16, 2020
1 parent 6cbfadf commit afad86e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/setup/karma.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ module.exports = config => {
}
}
: {}),
singleRun: !!process.env.CI,
singleRun: true,
plugins: [
'karma-webpack',
'karma-jasmine',
Expand Down

0 comments on commit afad86e

Please sign in to comment.