Support for inspect builds

pull/419/head
Frostebite 2022-08-11 03:36:53 +01:00
parent efb293b015
commit c4ddb44d27
1 changed files with 3 additions and 3 deletions

View File

@ -91,7 +91,7 @@ describe('Cloud Runner', () => {
expect(results2).toEqual(expect.not.stringContaining(libraryString)); expect(results2).toEqual(expect.not.stringContaining(libraryString));
GitHub.githubInputEnabled = true; GitHub.githubInputEnabled = true;
delete Cli.options; delete Cli.options;
}, 1000000); }, 10000000);
} }
it('Local cloud runner returns commands', async () => { it('Local cloud runner returns commands', async () => {
// Build parameters // Build parameters
@ -120,7 +120,7 @@ describe('Cloud Runner', () => {
await expect(CloudRunner.run(buildParameter, baseImage.toString())).resolves.not.toThrow(); await expect(CloudRunner.run(buildParameter, baseImage.toString())).resolves.not.toThrow();
GitHub.githubInputEnabled = true; GitHub.githubInputEnabled = true;
delete Cli.options; delete Cli.options;
}, 1000000); }, 10000000);
it('Test cloud runner returns commands', async () => { it('Test cloud runner returns commands', async () => {
// Build parameters // Build parameters
Cli.options = { Cli.options = {
@ -140,5 +140,5 @@ describe('Cloud Runner', () => {
await expect(CloudRunner.run(buildParameter, baseImage.toString())).resolves.not.toThrow(); await expect(CloudRunner.run(buildParameter, baseImage.toString())).resolves.not.toThrow();
GitHub.githubInputEnabled = true; GitHub.githubInputEnabled = true;
delete Cli.options; delete Cli.options;
}, 1000000); }, 10000000);
}); });