Skip to content

Commit

Permalink
style(tests): drop timeout to have better output
Browse files Browse the repository at this point in the history
  • Loading branch information
balthazar committed Feb 6, 2015
1 parent 7105aa0 commit 9a334d7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions test/test-font.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ describe('Launching fonts tests', function () {
assert.fileContent('client/styles/fonts.scss', 'url(\'/assets/fonts/fugitive/fugitive.ttf\') format(\'truetype\')');
assert.fileContent('client/styles/fonts.scss', 'url(\'/assets/fonts/fugitive/fugitive.eot\')');
done();
}, 50);
}, 30);

});
});
Expand All @@ -73,7 +73,7 @@ describe('Launching fonts tests', function () {
assert.fileContent('client/styles/fonts.scss', 'url(\'/assets/fonts/sushi/sushi.ttf\') format(\'truetype\')');
assert.fileContent('client/styles/fonts.scss', 'url(\'/assets/fonts/sushi/sushi.svg#sushi\') format(\'svg\')');
done();
}, 50);
}, 30);

});

Expand Down
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();
}, 50);
}, 30);
});

});
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();
}, 50);
}, 30);
});

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

});
Expand Down

0 comments on commit 9a334d7

Please sign in to comment.