Skip to content

Commit

Permalink
test(style): increase assertion timeout of injects
Browse files Browse the repository at this point in the history
  • Loading branch information
balthazar committed Mar 5, 2015
1 parent 6d021fb commit f5b38c4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/test-style.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('Launching style tests', function () {
assert.file('client/styles/bootstrap.scss');
assert.noFileContent('client/styles/app.scss', 'bootstrap');
done();
}, 30);
}, 250);
});

});
Expand All @@ -51,7 +51,7 @@ describe('Launching style tests', function () {
assert.file('client/styles/flexbox.scss');
assert.fileContent('client/styles/app.scss', '@import "flexbox";');
done();
}, 30);
}, 250);
});

});
Expand All @@ -66,7 +66,7 @@ describe('Launching style tests', function () {
assert.file('client/styles/gold.scss');
assert.fileContent('client/styles/app.scss', '// imports\n@import "gold";');
done();
}, 30);
}, 250);
});

});
Expand Down

0 comments on commit f5b38c4

Please sign in to comment.