Skip to content

Commit f1f0fda

Browse files
authored
fix: add missing import (#3652)
1 parent 307585f commit f1f0fda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/artillery/test/cloud-e2e/fargate/cw-adot.test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
const { afterEach, beforeEach, before } = require('tap');
3+
const { afterEach, beforeEach, before, skip } = require('tap');
44
const { $ } = require('zx');
55
const fs = require('node:fs');
66
const {
@@ -32,7 +32,7 @@ before(async () => {
3232
await $`${A9_PATH} -V`;
3333
});
3434

35-
tap.skip('traces succesfully arrive to cloudwatch', async (t) => {
35+
skip('traces succesfully arrive to cloudwatch', async (t) => {
3636
// Arrange:
3737
const expectedTotalSpans = 28; // 4 VUs * (1 scenario root span + 3 pageSpans + 3 stepSpans )
3838
const expectedVus = 4;

0 commit comments

Comments
 (0)