From eec96a7ed1d7640e2f1d082ed37ce4ee35aadc47 Mon Sep 17 00:00:00 2001 From: Tim Etchells Date: Tue, 14 Apr 2020 09:12:57 -0400 Subject: [PATCH] Lengthen project creation test timeout in Jenkins (#558) Signed-off-by: Tim Etchells --- dev/src/test/project/Creation.test.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev/src/test/project/Creation.test.ts b/dev/src/test/project/Creation.test.ts index bedf4804..e8472ab6 100644 --- a/dev/src/test/project/Creation.test.ts +++ b/dev/src/test/project/Creation.test.ts @@ -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);