From a31d78602a629c401bb6d89cd6a209337925a9a4 Mon Sep 17 00:00:00 2001 From: Luca Forstner Date: Wed, 3 May 2023 09:55:08 +0200 Subject: [PATCH] test(nextjs): Fix test that got skipped in CI check of #7990 --- .../nextjs/test/integration/test/client/tracingFetch.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nextjs/test/integration/test/client/tracingFetch.test.ts b/packages/nextjs/test/integration/test/client/tracingFetch.test.ts index f4b464ac55fa..445c9c0e3b55 100644 --- a/packages/nextjs/test/integration/test/client/tracingFetch.test.ts +++ b/packages/nextjs/test/integration/test/client/tracingFetch.test.ts @@ -31,7 +31,7 @@ test('should correctly instrument `fetch` for performance tracing', async ({ pag expect(transaction[0].spans).toEqual( expect.arrayContaining([ expect.objectContaining({ - data: { method: 'GET', url: 'http://example.com', type: 'fetch' }, + data: expect.objectContaining({ method: 'GET', url: 'http://example.com', type: 'fetch' }), description: 'GET http://example.com', op: 'http.client', parent_span_id: expect.any(String),