Skip to content

Commit

Permalink
Mark test as slow
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiborza committed Sep 5, 2024
1 parent c0e69bc commit 4e78106
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ import { expect, test } from '@playwright/test';
import { waitForError } from '@sentry-internal/test-utils';

test('captures an exception', async ({ page }) => {
test.slow();

const errorEventPromise = waitForError('solidstart', errorEvent => {
return (
!errorEvent.type &&
Expand All @@ -13,7 +15,7 @@ test('captures an exception', async ({ page }) => {
try {
await page.goto('/client-error', {
waitUntil: 'domcontentloaded',
timeout: 25000,
timeout: 25_000,
});
} catch {
// sometimes goto times out, so try again
Expand Down

0 comments on commit 4e78106

Please sign in to comment.