File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed
ci-visibility/exporters/test-worker Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 7
7
CUCUMBER_WORKER_TRACE_PAYLOAD_CODE ,
8
8
MOCHA_WORKER_TRACE_PAYLOAD_CODE ,
9
9
JEST_WORKER_LOGS_PAYLOAD_CODE ,
10
- PLAYWRIGHT_WORKER_TRACE_PAYLOAD_CODE ,
11
- VITEST_WORKER_TRACE_PAYLOAD_CODE
10
+ PLAYWRIGHT_WORKER_TRACE_PAYLOAD_CODE
12
11
} = require ( '../../../plugins/util/test' )
13
12
const { getEnvironmentVariable } = require ( '../../../config-helper' )
14
13
@@ -25,9 +24,6 @@ function getInterprocessTraceCode () {
25
24
if ( getEnvironmentVariable ( 'DD_PLAYWRIGHT_WORKER' ) ) {
26
25
return PLAYWRIGHT_WORKER_TRACE_PAYLOAD_CODE
27
26
}
28
- if ( process . env . VITEST_WORKER_ID ) {
29
- return VITEST_WORKER_TRACE_PAYLOAD_CODE
30
- }
31
27
return null
32
28
}
33
29
Original file line number Diff line number Diff line change @@ -115,9 +115,6 @@ const MOCHA_WORKER_TRACE_PAYLOAD_CODE = 80
115
115
// playwright worker variables
116
116
const PLAYWRIGHT_WORKER_TRACE_PAYLOAD_CODE = 90
117
117
118
- // vitest worker variables
119
- const VITEST_WORKER_TRACE_PAYLOAD_CODE = 100
120
-
121
118
// Early flake detection util strings
122
119
const EFD_STRING = "Retried by Datadog's Early Flake Detection"
123
120
const EFD_TEST_NAME_REGEX = new RegExp ( EFD_STRING + String . raw ` \(#\d+\): ` , 'g' )
@@ -197,7 +194,6 @@ module.exports = {
197
194
CUCUMBER_WORKER_TRACE_PAYLOAD_CODE ,
198
195
MOCHA_WORKER_TRACE_PAYLOAD_CODE ,
199
196
PLAYWRIGHT_WORKER_TRACE_PAYLOAD_CODE ,
200
- VITEST_WORKER_TRACE_PAYLOAD_CODE ,
201
197
TEST_SOURCE_START ,
202
198
TEST_SKIPPED_BY_ITR ,
203
199
TEST_IS_NEW ,
You can’t perform that action at this time.
0 commit comments