Skip to content

Commit a31d786

Browse files
author
Luca Forstner
committed
test(nextjs): Fix test that got skipped in CI check of #7990
1 parent 6bd2637 commit a31d786

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/nextjs/test/integration/test/client/tracingFetch.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ test('should correctly instrument `fetch` for performance tracing', async ({ pag
3131
expect(transaction[0].spans).toEqual(
3232
expect.arrayContaining([
3333
expect.objectContaining({
34-
data: { method: 'GET', url: 'http://example.com', type: 'fetch' },
34+
data: expect.objectContaining({ method: 'GET', url: 'http://example.com', type: 'fetch' }),
3535
description: 'GET http://example.com',
3636
op: 'http.client',
3737
parent_span_id: expect.any(String),

0 commit comments

Comments
 (0)