Skip to content

Commit

Permalink
feat: increase reconnect probe timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
alexey-yarmosh committed Sep 11, 2024
1 parent 0d294cc commit ba7f496
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/e2e/cases/offline-probes.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ import { waitMesurementFinish, waitProbeToConnect, waitProbeToDisconnect } from
import { docker } from '../docker.js';

describe('api', () => {
beforeEach(async () => {
beforeEach(async function () {
this.timeout(60000);
await docker.startProbeContainer();
await waitProbeToConnect();
});

after(async () => {
after(async function () {
this.timeout(60000);
await docker.startProbeContainer();
await waitProbeToConnect();
});
Expand Down

0 comments on commit ba7f496

Please sign in to comment.