Skip to content

Commit

Permalink
mocha: enforce forbid-only rule in the continuous integration (#7448)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnd0e authored Feb 8, 2021
1 parent 9330d75 commit 94a5618
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion spec/karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,12 @@ module.exports = function (config) {

// Continuous Integration mode
// if true, it capture browsers, run tests and exit
singleRun: true
singleRun: true,

client: {
mocha: {
forbidOnly: process.env.CI || false
}
}
});
};

0 comments on commit 94a5618

Please sign in to comment.