Skip to content

Commit d58fb81

Browse files
committed
really fix test??
1 parent 98d702c commit d58fb81

File tree

1 file changed

+4
-4
lines changed
  • packages/browser-integration-tests/suites/integrations/Breadcrumbs/dom/textInput

1 file changed

+4
-4
lines changed

packages/browser-integration-tests/suites/integrations/Breadcrumbs/dom/textInput/test.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ sentryTest('captures Breadcrumb for events on inputs & debounced them', async ({
2525

2626
await page.click('#input1');
2727
// Not debounced because other event type
28-
await page.type('#input1', 'John', { delay: 0.01 });
28+
await page.type('#input1', 'John', { delay: 1 });
2929
// This should be debounced
30-
await page.type('#input1', 'Abby', { delay: 0.01 });
30+
await page.type('#input1', 'Abby', { delay: 1 });
3131
// not debounced because other target
32-
await page.type('#input2', 'Anne', { delay: 0.01 });
32+
await page.type('#input2', 'Anne', { delay: 1 });
3333

3434
// Wait a second for the debounce to finish
3535
await page.waitForTimeout(1000);
36-
await page.type('#input2', 'John', { delay: 0.01 });
36+
await page.type('#input2', 'John', { delay: 1 });
3737

3838
await page.evaluate('Sentry.captureException("test exception")');
3939

0 commit comments

Comments
 (0)