File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -2206,7 +2206,7 @@ describe('mocha CommonJS', function () {
2206
2206
} )
2207
2207
} )
2208
2208
2209
- context ( 'dynamic instrumentation' , ( ) => {
2209
+ context . only ( 'dynamic instrumentation' , ( ) => {
2210
2210
it ( 'does not activate dynamic instrumentation if DD_TEST_DYNAMIC_INSTRUMENTATION_ENABLED is not set' , ( done ) => {
2211
2211
receiver . setSettings ( {
2212
2212
flaky_test_retries_enabled : true ,
@@ -2388,12 +2388,16 @@ describe('mocha CommonJS', function () {
2388
2388
'./dynamic-instrumentation/test-hit-breakpoint'
2389
2389
] ) ,
2390
2390
DD_TEST_DYNAMIC_INSTRUMENTATION_ENABLED : 'true' ,
2391
- DD_CIVISIBILITY_FLAKY_RETRY_COUNT : '1'
2391
+ DD_CIVISIBILITY_FLAKY_RETRY_COUNT : '1' ,
2392
+ DD_TRACE_DEBUG : '1'
2392
2393
} ,
2393
2394
stdio : 'inherit'
2394
2395
}
2395
2396
)
2396
2397
2398
+ childProcess . stdout . pipe ( process . stdout )
2399
+ childProcess . stderr . pipe ( process . stderr )
2400
+
2397
2401
childProcess . on ( 'exit' , ( ) => {
2398
2402
Promise . all ( [ eventsPromise , logsPromise ] ) . then ( ( ) => {
2399
2403
assert . equal ( snapshotIdByTest , snapshotIdByLog )
You can’t perform that action at this time.
0 commit comments