Skip to content

Commit c2610b8

Browse files
author
Kelly Selden
committed
increase mac timeouts
1 parent 62c4026 commit c2610b8

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,10 @@ describe(function() {
160160
});
161161

162162
it('runs codemods', async function() {
163+
if (process.platform === 'darwin') {
164+
this.timeout(60 * 1000);
165+
}
166+
163167
async function _merge(src, dest) {
164168
await fs.copy(
165169
path.resolve(__dirname, `../fixtures/codemod/codemods/ember-modules-codemod/${src}/my-app`),
@@ -442,7 +446,7 @@ describe(function() {
442446
});
443447

444448
it('can install an addon with a default blueprint and a state file', async function() {
445-
this.timeout(60 * 1000);
449+
this.timeout((process.platform === 'darwin' ? 3 : 1) * 60 * 1000);
446450

447451
let {
448452
location

0 commit comments

Comments
 (0)