Skip to content

Commit 6b44ea0

Browse files
committed
fix test
1 parent 3d3c0eb commit 6b44ea0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dev-packages/e2e-tests/test-applications/nuxt-3/tests/tracing.client.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ test('sends component tracking spans when `trackComponents` is enabled', async (
3939
await page.goto(`/client-error`);
4040

4141
const rootSpan = await transactionPromise;
42-
const errorButtonSpan = rootSpan.spans.find((span: Span) => span.description === 'Vue <<ErrorButton>>');
42+
const errorButtonSpan = rootSpan.spans.find((span: Span) => span.description === 'Vue <ErrorButton>');
4343

4444
const expected = {
4545
data: { 'sentry.origin': 'auto.ui.vue', 'sentry.op': 'ui.vue.mount' },
46-
description: 'Vue <<ErrorButton>>',
46+
description: 'Vue <ErrorButton>',
4747
op: 'ui.vue.mount',
4848
parent_span_id: expect.any(String),
4949
span_id: expect.any(String),

0 commit comments

Comments
 (0)