diff --git a/tests/run-tests.js b/tests/run-tests.js index 65f4d800564679308bf9c0783f8a90d8569b3d22..4088043e03590cddcddeb487d5062fb2a7f83971 100644 --- a/tests/run-tests.js +++ b/tests/run-tests.js @@ -19,7 +19,10 @@ startServer.on('exit', () => { // eslint-disable-next-line console.log('Starting development server for e2e tests...'); startServer.stdout.on('data', (data) => { - if (data.toString().indexOf('The app is running at') >= 0) { + // eslint-disable-next-line + console.log(data.toString()); + if (data.toString().indexOf('The app is running at') >= 0 || + data.toString().indexOf('Compiled with warnings') >= 0) { // eslint-disable-next-line console.log('Development server is started, ready to run tests.'); const testCmd = spawn('npm', ['test'], {