Commit 9525d5cc by Michael Mifsud Committed by GitHub

Merge pull request #1692 from xzyfer/feat/mocha-retry

Retry CLI specs that fail three times
parents 4dae69cc be62b403
...@@ -11,6 +11,9 @@ var assert = require('assert'), ...@@ -11,6 +11,9 @@ var assert = require('assert'),
LIBSASS_VERSION = null; LIBSASS_VERSION = null;
describe('cli', function() { describe('cli', function() {
// For some reason we experience random timeout failures in CI
// due to spawn hanging/failing silently. See #1692.
this.retries(4);
before(function(done) { before(function(done) {
var bin = spawn(cli, ['-v']); var bin = spawn(cli, ['-v']);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment