Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const dynamic = 'force-dynamic';

export default async function SuperSlowPage() {
await new Promise(resolve => setTimeout(resolve, 10000));
await new Promise(resolve => setTimeout(resolve, 5000));
return null;
}
Original file line number Diff line number Diff line change
Expand Up @@ -125,13 +125,14 @@ test('Should set not_found status for server actions calling notFound()', async
test('Will not include spans in pageload transaction with faulty timestamps for slow loading pages', async ({
page,
}) => {
test.slow();
const pageloadTransactionEventPromise = waitForTransaction('nextjs-app-dir', transactionEvent => {
return (
transactionEvent?.contexts?.trace?.op === 'pageload' && transactionEvent?.transaction === '/very-slow-component'
);
});

await page.goto('/very-slow-component');
await page.goto('/very-slow-component', { timeout: 11000 });

const pageLoadTransaction = await pageloadTransactionEventPromise;

Expand Down
Loading