File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
dev-packages/e2e-tests/test-applications/nextjs-14/tests Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -84,6 +84,7 @@ test('Should send a transaction event with correct status for a generateMetadata
8484 const testTitle = 'redirect-foobar' ;
8585
8686 const transactionPromise = waitForTransaction ( 'nextjs-14' , async transactionEvent => {
87+ console . log ( { txnames1 : transactionEvent . transaction , extra : transactionEvent . extra } ) ;
8788 return (
8889 transactionEvent ?. transaction === 'Page.generateMetadata (/generation-functions/with-redirect)' &&
8990 ( transactionEvent . extra ?. route_data as any ) ?. searchParams ?. metadataTitle === testTitle
@@ -101,6 +102,7 @@ test('Should send a transaction event with correct status for a generateMetadata
101102 const testTitle = 'notfound-foobar' ;
102103
103104 const transactionPromise = waitForTransaction ( 'nextjs-14' , async transactionEvent => {
105+ console . log ( { txnames2 : transactionEvent . transaction , extra : transactionEvent . extra } ) ;
104106 return (
105107 transactionEvent ?. transaction === 'Page.generateMetadata (/generation-functions/with-notfound)' &&
106108 ( transactionEvent . extra ?. route_data as any ) ?. searchParams ?. metadataTitle === testTitle
You can’t perform that action at this time.
0 commit comments