Skip to content

Commit 3bc06e1

Browse files
committed
test(tests): Increase the timeouts to deal with appveyor false-negatives
1 parent bd328b6 commit 3bc06e1

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

tests/build.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ const createElmAppCmd = path.join(rootDir, 'bin/create-elm-app-cli.js');
1414
const elmAppCmd = path.join(rootDir, 'bin/elm-app-cli.js');
1515

1616
describe('Creating and making a build of Elm application', function() {
17-
this.timeout(30000);
17+
this.timeout(60000);
1818

1919
before(done => {
2020
process.env.PUBLIC_URL = './';

tests/elm-app.eject.spec.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ const testAppDir = path.join(rootDir, testAppName);
1313
const createElmAppCmd = path.join(rootDir, 'bin/create-elm-app-cli.js');
1414
const elmAppCmd = path.join(rootDir, 'bin/elm-app-cli.js');
1515

16-
describe('Ejecting Elm application. (Please wait...)', () => {
16+
describe('Ejecting Elm application. (Please wait...)', function() {
17+
this.timeout(60000);
18+
1719
before(done => {
1820
const { status } = spawn.sync('node', [createElmAppCmd, testAppName]);
1921
if (status === 0) {

0 commit comments

Comments
 (0)