test: increase timeout for binary download

Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2025-01-20 15:40:14 +01:00
parent 1229986252
commit d9bd2d45ba
2 changed files with 31 additions and 23 deletions

View File

@@ -61,7 +61,9 @@ describe('download', () => {
const install = new Install({standalone: false}); const install = new Install({standalone: false});
const toolPath = await install.download(version); const toolPath = await install.download(version);
expect(fs.existsSync(toolPath)).toBe(true); expect(fs.existsSync(toolPath)).toBe(true);
}); },
100000
);
// prettier-ignore // prettier-ignore
test.each([ test.each([
@@ -72,7 +74,9 @@ describe('download', () => {
const install = new Install({standalone: false}); const install = new Install({standalone: false});
const toolPath = await install.download(version, true); const toolPath = await install.download(version, true);
expect(fs.existsSync(toolPath)).toBe(true); expect(fs.existsSync(toolPath)).toBe(true);
}); },
100000
);
// TODO: add tests for arm // TODO: add tests for arm
// prettier-ignore // prettier-ignore

View File

@@ -61,7 +61,9 @@ describe('download', () => {
const install = new Install({standalone: false}); const install = new Install({standalone: false});
const toolPath = await install.download(version); const toolPath = await install.download(version);
expect(fs.existsSync(toolPath)).toBe(true); expect(fs.existsSync(toolPath)).toBe(true);
}); },
100000
);
// prettier-ignore // prettier-ignore
test.each([ test.each([
@@ -72,7 +74,9 @@ describe('download', () => {
const install = new Install({standalone: false}); const install = new Install({standalone: false});
const toolPath = await install.download(version, true); const toolPath = await install.download(version, true);
expect(fs.existsSync(toolPath)).toBe(true); expect(fs.existsSync(toolPath)).toBe(true);
}); },
100000
);
// TODO: add tests for arm // TODO: add tests for arm
// prettier-ignore // prettier-ignore