Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorbaptista committed Jan 4, 2018
1 parent 2f04764 commit 16c6cd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rune2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const spawn = require('child_process').spawn;
// Main

const env = (process.env.TRAVIS) ? 'chrome,safari,edge' : 'chrome'
const server = spawn('make', ['app-e2e']);
const server = spawn('make', ['app-e2e'], {stdio: 'inherit'});
const runner = spawn('./node_modules/.bin/nightwatch', ['-e', env], {stdio: 'inherit'});

runner.on('exit', function (code) {
Expand Down

0 comments on commit 16c6cd2

Please sign in to comment.