Skip to content

Commit

Permalink
Docker: Increase timeout for createContainer test
Browse files Browse the repository at this point in the history
  • Loading branch information
MathieuAndrade committed Jan 4, 2024
1 parent d620785 commit 0705dae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/docker/test/src/docker.createContainer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ describe('Docker.createContainer', () => {
container.remove(done);
});

it('should create a container', async () => {
it('should create a container', async function run() {
this.timeout(15000);
container = await docker.createContainer({
Image: 'alpine',
AttachStdin: false,
Expand Down

0 comments on commit 0705dae

Please sign in to comment.