Fix: watch input
parent
5ed6e400ff
commit
839644736e
|
|
@ -65,7 +65,7 @@ describe('Cloud Runner', () => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
delete Cli.options;
|
delete Cli.options;
|
||||||
}, 1000000);
|
}, 100000);
|
||||||
it('Run one build it should not use cache, run subsequent build which should use cache', async () => {
|
it('Run one build it should not use cache, run subsequent build which should use cache', async () => {
|
||||||
Cli.options = {
|
Cli.options = {
|
||||||
versioning: 'None',
|
versioning: 'None',
|
||||||
|
|
@ -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;
|
||||||
}, 10000000);
|
}, 1000000);
|
||||||
}
|
}
|
||||||
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;
|
||||||
}, 10000000);
|
}, 1000000);
|
||||||
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;
|
||||||
}, 10000000);
|
}, 1000000);
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue