Skip to content

Commit

Permalink
Use concurrency: 1 on travis
Browse files Browse the repository at this point in the history
  • Loading branch information
jsor committed Aug 21, 2018
1 parent 77da88d commit 3a13317
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ module.exports = function(config) {

// Concurrency level
// how many browser should be started simultaneous
concurrency: Infinity
// Try to workaround the "Some of your tests did a full page reload!" error
// by setting concurrency: 1 on TravisCI
concurrency: env.CI === 'true' ? 1 : Infinity
})
};

0 comments on commit 3a13317

Please sign in to comment.