diff --git a/tests/build.spec.js b/tests/build.spec.js index d9cf99e0..eddb802f 100644 --- a/tests/build.spec.js +++ b/tests/build.spec.js @@ -14,7 +14,7 @@ const createElmAppCmd = path.join(rootDir, 'bin/create-elm-app-cli.js'); const elmAppCmd = path.join(rootDir, 'bin/elm-app-cli.js'); describe('Creating and making a build of Elm application', function() { - this.timeout(30000); + this.timeout(60000); before(done => { process.env.PUBLIC_URL = './'; diff --git a/tests/elm-app.eject.spec.js b/tests/elm-app.eject.spec.js index 5b40fb1f..5cd21c76 100644 --- a/tests/elm-app.eject.spec.js +++ b/tests/elm-app.eject.spec.js @@ -13,7 +13,9 @@ const testAppDir = path.join(rootDir, testAppName); const createElmAppCmd = path.join(rootDir, 'bin/create-elm-app-cli.js'); const elmAppCmd = path.join(rootDir, 'bin/elm-app-cli.js'); -describe('Ejecting Elm application. (Please wait...)', () => { +describe('Ejecting Elm application. (Please wait...)', function() { + this.timeout(60000); + before(done => { const { status } = spawn.sync('node', [createElmAppCmd, testAppName]); if (status === 0) {