Globally increase mocha timeout because Travis struggles sometimes

This commit is contained in:
Keegan
2016-03-14 01:55:22 +11:00
parent a94eae9a16
commit d52f6d4aa2
2 changed files with 6 additions and 2 deletions
+6
View File
@@ -12,6 +12,12 @@ module.exports = function(config) {
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
frameworks: ['browserify', 'source-map-support', 'mocha'],
client: {
mocha: {
timeout: 10000 // 10 sec because Travis struggles sometimes.
}
},
browserify: {
debug: true,
transform: [
-2
View File
@@ -62,8 +62,6 @@ describe('Clay', function() {
it('handles the "showConfiguration" event if autoHandleEvents is not false',
function() {
this.timeout(10000); // 10 seconds
stubPebble();
var clay = fixture.clay([]);