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

Commit eec96a7

Browse files
author
Tim Etchells
authored
Lengthen project creation test timeout in Jenkins (#558)
Signed-off-by: Tim Etchells <timetchells@ibm.com>
1 parent 31acd4d commit eec96a7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

dev/src/test/project/Creation.test.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,9 +102,12 @@ describe(`Project creation`, async function() {
102102
expect(creationFailures, `The following projects failed to be created: ${failureNames}`).to.be.empty;
103103
});
104104

105+
const startTimeout = TestUtil.ms(TestConfig.isJenkins() ? 20 : 10, "min");
106+
const startSlow = startTimeout / 2;
107+
105108
it(`should have the projects build and start`, async function() {
106-
this.timeout(TestUtil.ms(10, "min"));
107-
this.slow(TestUtil.ms(5, "min"));
109+
this.timeout(startTimeout);
110+
this.slow(startSlow);
108111

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

0 commit comments

Comments
 (0)