Skip to content

Commit

Permalink
ci: Unflake #13177 (#13193)
Browse files Browse the repository at this point in the history
The node integration test runner depends on event order. We cannot
assert on that.

Fixes #13177
  • Loading branch information
lforst authored Aug 2, 2024
1 parent d107860 commit c558ecb
Showing 1 changed file with 1 addition and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,7 @@ test('correctly applies isolation scope even without tracing', done => {
},
},
})
.expect({
event: {
transaction: 'GET /test/isolationScope/2',
tags: {
global: 'tag',
'isolation-scope': 'tag',
'isolation-scope-2': '2',
},
// Request is correctly set
request: {
url: expect.stringContaining('/test/isolationScope/2'),
headers: {
'user-agent': expect.stringContaining(''),
},
},
},
})
.start(done);

runner.makeRequest('get', '/test/isolationScope/1').then(() => runner.makeRequest('get', '/test/isolationScope/2'));
runner.makeRequest('get', '/test/isolationScope/1');
});

0 comments on commit c558ecb

Please sign in to comment.