From 4abccc4c6a6340a0c429f1c79a0eb70ccd195895 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Fri, 18 Aug 2023 11:31:50 +0200 Subject: [PATCH] test: docker install 24.0.5 Signed-off-by: CrazyMax --- __tests__/docker/install.test.itg.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); });