From 839644736edf77724bb959aa56bf307e687ab2ba Mon Sep 17 00:00:00 2001 From: Frostebite Date: Thu, 11 Aug 2022 20:45:15 +0100 Subject: [PATCH] Fix: watch input --- src/model/cloud-runner/cloud-runner.test.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/model/cloud-runner/cloud-runner.test.ts b/src/model/cloud-runner/cloud-runner.test.ts index bd9c9250..751c2c98 100644 --- a/src/model/cloud-runner/cloud-runner.test.ts +++ b/src/model/cloud-runner/cloud-runner.test.ts @@ -65,7 +65,7 @@ describe('Cloud Runner', () => { } } delete Cli.options; - }, 1000000); + }, 100000); it('Run one build it should not use cache, run subsequent build which should use cache', async () => { Cli.options = { versioning: 'None', @@ -91,7 +91,7 @@ describe('Cloud Runner', () => { expect(results2).toEqual(expect.not.stringContaining(libraryString)); GitHub.githubInputEnabled = true; delete Cli.options; - }, 10000000); + }, 1000000); } it('Local cloud runner returns commands', async () => { // Build parameters @@ -120,7 +120,7 @@ describe('Cloud Runner', () => { await expect(CloudRunner.run(buildParameter, baseImage.toString())).resolves.not.toThrow(); GitHub.githubInputEnabled = true; delete Cli.options; - }, 10000000); + }, 1000000); it('Test cloud runner returns commands', async () => { // Build parameters Cli.options = { @@ -140,5 +140,5 @@ describe('Cloud Runner', () => { await expect(CloudRunner.run(buildParameter, baseImage.toString())).resolves.not.toThrow(); GitHub.githubInputEnabled = true; delete Cli.options; - }, 10000000); + }, 1000000); });