Skip to content

Commit

Permalink
docker: retries for install integration tests
Browse files Browse the repository at this point in the history
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
  • Loading branch information
crazy-max committed Mar 26, 2023
1 parent 70fba4e commit da9600b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion __tests__/docker/install.test.itg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

import path from 'path';
import {describe, expect, test} from '@jest/globals';
import {jest, describe, expect, test} from '@jest/globals';

import {Install} from '../../src/docker/install';
import {Docker} from '../../src/docker/docker';
Expand All @@ -24,6 +24,7 @@ import {Docker} from '../../src/docker/docker';
const tmpDir = path.join(process.env.TEMP || '/tmp', 'docker-install-jest');

describe('install', () => {
jest.retryTimes(2);
// prettier-ignore
test.each(['v23.0.0'])(
'install docker %s', async (version) => {
Expand Down

0 comments on commit da9600b

Please sign in to comment.