Skip to content

Commit 4e4521b

Browse files
committed
extend test timeouts to make some tests less flakey
1 parent 581b6bb commit 4e4521b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/integration/index-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const {
2626
const { EOL } = require('os');
2727

2828
describe(function() {
29-
this.timeout(60e3);
29+
this.timeout(90e3);
3030

3131
let tmpPath;
3232

test/integration/init-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const {
2020
} = require('../../src/constants');
2121

2222
describe(init, function() {
23-
this.timeout(30e3);
23+
this.timeout(60e3);
2424

2525
let tmpPath;
2626

test/integration/overwrite-blueprint-files-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const sinon = require('sinon');
1313
const { ember } = require('../../src/install-and-generate-blueprint');
1414

1515
describe(overwriteBlueprintFiles, function() {
16-
this.timeout(60e3);
16+
this.timeout(90e3);
1717

1818
it('can install an addon with a default blueprint and no state file', async function() {
1919
let tmpPath = await buildTmp({

0 commit comments

Comments
 (0)