From f37a7f0ad2474702934818b09150c3bf5f2c5b5d Mon Sep 17 00:00:00 2001 From: Abhijeet Prasad Date: Wed, 17 May 2023 14:07:02 +0200 Subject: [PATCH] test(nextjs): Add response content length to assertion --- .../nextjs/test/integration/test/client/tracingFetch.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/nextjs/test/integration/test/client/tracingFetch.test.ts b/packages/nextjs/test/integration/test/client/tracingFetch.test.ts index 7c3256c5e6a7..18bc60b6b054 100644 --- a/packages/nextjs/test/integration/test/client/tracingFetch.test.ts +++ b/packages/nextjs/test/integration/test/client/tracingFetch.test.ts @@ -40,6 +40,7 @@ test('should correctly instrument `fetch` for performance tracing', async ({ pag timestamp: expect.any(Number), trace_id: expect.any(String), status: expect.any(String), + 'http.response_content_length': expect.any(String), }), ]), );