Skip to content
This repository has been archived by the owner on Nov 28, 2022. It is now read-only.

Commit

Permalink
Lengthen project creation test timeout in Jenkins (#558)
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Etchells <[email protected]>
  • Loading branch information
Tim Etchells authored Apr 14, 2020
1 parent 31acd4d commit eec96a7
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions dev/src/test/project/Creation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,12 @@ describe(`Project creation`, async function() {
expect(creationFailures, `The following projects failed to be created: ${failureNames}`).to.be.empty;
});

const startTimeout = TestUtil.ms(TestConfig.isJenkins() ? 20 : 10, "min");
const startSlow = startTimeout / 2;

it(`should have the projects build and start`, async function() {
this.timeout(TestUtil.ms(10, "min"));
this.slow(TestUtil.ms(5, "min"));
this.timeout(startTimeout);
this.slow(startSlow);

expect(testProjects, `No test projects were created`).to.exist.and.have.length.greaterThan(0);

Expand Down

0 comments on commit eec96a7

Please sign in to comment.