Skip to content

Commit d59209d

Browse files
author
Kelly Selden
committed
bump timeouts
1 parent 4f552a0 commit d59209d

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

test/acceptance/ember-cli-update-test.js

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const down = '\u001b[B';
2626
const enter = '\n';
2727

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

3131
let tmpPath;
3232

@@ -144,11 +144,7 @@ describe(function() {
144144
});
145145

146146
it('runs codemods', async function() {
147-
if (process.platform === 'darwin') {
148-
this.timeout(1.5 * 60e3);
149-
} else {
150-
this.timeout(60e3);
151-
}
147+
this.timeout(1.5 * 60e3);
152148

153149
async function _merge(src, dest) {
154150
await fs.copy(
@@ -246,6 +242,8 @@ describe(function() {
246242
});
247243

248244
it('can pick from multiple blueprints', async function() {
245+
this.timeout(1.5 * 60e3);
246+
249247
let {
250248
location,
251249
version: to
@@ -388,7 +386,7 @@ describe(function() {
388386
});
389387

390388
it('can install an addon with a default blueprint and a state file', async function() {
391-
this.timeout((process.platform === 'darwin' ? 3 : 1) * 60e3);
389+
this.timeout(3 * 60e3);
392390

393391
let {
394392
location

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(30e3);
29+
this.timeout(60e3);
3030

3131
let tmpPath;
3232

0 commit comments

Comments
 (0)