Skip to content

Commit

Permalink
scheduler
Browse files Browse the repository at this point in the history
  • Loading branch information
lynchbomb committed Jul 12, 2018
1 parent 8d9571f commit 012591a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/headless/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ var test = null;
server.stdout.on('data', (data) => {
// Wait for signal that test app has booted
if (data.indexOf('Serving Spaniel Test App') > -1 && !test) {
test = spawn('./node_modules/mocha/bin/mocha', ['--require', 'babel-core/register', 'test/headless/specs/**/*.js', '--timeout', '3000']);
test = spawn('./node_modules/mocha/bin/mocha', ['--require', 'babel-core/register', 'test/headless/specs/**/*.js', '--timeout', '3000', '--exit']);

test.stderr.on('data', (data) => {
console.log(`Test Error: ${data}`);
Expand Down
2 changes: 1 addition & 1 deletion test/headless/specs/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ testModule('elementSatisfiesRatio', class extends TestClass {
top: 0,
left: 0,
right: 0,
bottom: 0,
bottom: 0
}
});
})
Expand Down

0 comments on commit 012591a

Please sign in to comment.