Skip to content

test(nextjs): Adapt slow test #14403

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 22, 2024
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