Skip to content

Commit c558ecb

Browse files
author
Luca Forstner
authored
ci: Unflake #13177 (#13193)
The node integration test runner depends on event order. We cannot assert on that. Fixes #13177
1 parent d107860 commit c558ecb

File tree

1 file changed

+1
-18
lines changed
  • dev-packages/node-integration-tests/suites/express/without-tracing

1 file changed

+1
-18
lines changed

dev-packages/node-integration-tests/suites/express/without-tracing/test.ts

Lines changed: 1 addition & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,7 @@ test('correctly applies isolation scope even without tracing', done => {
2323
},
2424
},
2525
})
26-
.expect({
27-
event: {
28-
transaction: 'GET /test/isolationScope/2',
29-
tags: {
30-
global: 'tag',
31-
'isolation-scope': 'tag',
32-
'isolation-scope-2': '2',
33-
},
34-
// Request is correctly set
35-
request: {
36-
url: expect.stringContaining('/test/isolationScope/2'),
37-
headers: {
38-
'user-agent': expect.stringContaining(''),
39-
},
40-
},
41-
},
42-
})
4326
.start(done);
4427

45-
runner.makeRequest('get', '/test/isolationScope/1').then(() => runner.makeRequest('get', '/test/isolationScope/2'));
28+
runner.makeRequest('get', '/test/isolationScope/1');
4629
});

0 commit comments

Comments
 (0)