File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
packages/e2e-tests/test-applications/nextjs-app-dir/tests Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 11import { test } from '@playwright/test' ;
2- import * as crypto from 'crypto' ;
32import { waitForTransaction } from '../../../test-utils/event-proxy-server' ;
43
54if ( process . env . TEST_ENV === 'production' ) {
65 // TODO: Fix that this is flakey on dev server - might be an SDK bug
7- test ( 'Sends connected traces for server components' , async ( { page } ) => {
6+ test ( 'Sends connected traces for server components' , async ( { page } , testInfo ) => {
87 await page . goto ( '/client-component' ) ;
98
10- const clientTransactionName = crypto . randomUUID ( ) ;
9+ const clientTransactionName = `e2e-next-js-app-dir: ${ testInfo . title } ` ;
1110
1211 const serverComponentTransaction = waitForTransaction ( 'nextjs-13-app-dir' , async transactionEvent => {
1312 return (
You can’t perform that action at this time.
0 commit comments