Skip to content

Commit

Permalink
test(create): further increase timeouts to avoid false negatives (#1184)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphinesse committed Nov 7, 2021
1 parent 896dacb commit ea9751b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/spec/create.spec.js
Expand Up @@ -100,11 +100,11 @@ describe('create', () => {
const packageName = 'com.test.app1';
const projectName = 'testcreate';
return verifyCreateAndBuild(tmpDir, packageName, projectName);
}, 240 * 1000); // first build takes longer (probably cold caches)
}, 10 * 60 * 1000); // first build takes longer (probably cold caches)

it('Test#002 : create project with complicated name', () => {
const packageName = 'com.test.app2';
const projectName = '応応応応 hello & إثرا 用用用用';
return verifyCreateAndBuild(tmpDir, packageName, projectName);
}, 120 * 1000);
}, 5 * 60 * 1000);
});

0 comments on commit ea9751b

Please sign in to comment.