test: docker install 24.0.5

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax 2023-08-18 11:31:50 +02:00
parent fcc92b092b
commit 4abccc4c6a
No known key found for this signature in database
GPG Key ID: 3248E46B6BB8C7F7

View File

@ -26,7 +26,7 @@ const tmpDir = path.join(process.env.TEMP || '/tmp', 'docker-install-jest');
describe('install', () => { describe('install', () => {
jest.retryTimes(2, {logErrorsBeforeRetry: true}); jest.retryTimes(2, {logErrorsBeforeRetry: true});
// prettier-ignore // prettier-ignore
test.each(['v23.0.0'])( test.each(['v24.0.5'])(
'install docker %s', async (version) => { 'install docker %s', async (version) => {
await expect((async () => { await expect((async () => {
const install = new Install({ const install = new Install({
@ -40,5 +40,5 @@ describe('install', () => {
await Docker.printInfo(); await Docker.printInfo();
await install.tearDown(); await install.tearDown();
})()).resolves.not.toThrow(); })()).resolves.not.toThrow();
}); }, 100000);
}); });