diff --git a/__tests__/docker/install.test.itg.ts b/__tests__/docker/install.test.itg.ts index 86d4988..e94b5d8 100644 --- a/__tests__/docker/install.test.itg.ts +++ b/__tests__/docker/install.test.itg.ts @@ -26,7 +26,7 @@ const tmpDir = path.join(process.env.TEMP || '/tmp', 'docker-install-jest'); describe('install', () => { jest.retryTimes(2, {logErrorsBeforeRetry: true}); // prettier-ignore - test.each(['v23.0.0'])( + test.each(['v24.0.5'])( 'install docker %s', async (version) => { await expect((async () => { const install = new Install({ @@ -40,5 +40,5 @@ describe('install', () => { await Docker.printInfo(); await install.tearDown(); })()).resolves.not.toThrow(); - }); + }, 100000); }); diff --git a/src/docker/install.ts b/src/docker/install.ts index b961dcc..3c714ce 100644 --- a/src/docker/install.ts +++ b/src/docker/install.ts @@ -207,7 +207,8 @@ export class Install { }); }, { - retries: 5 + retries: 10, + minTimeout: 1000 } ); core.info(`Docker daemon started started successfully`);