We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39f0752 commit 19fc035Copy full SHA for 19fc035
browser/e2e/tests/e2e.spec.ts
@@ -280,19 +280,13 @@ test.describe('data-browser', async () => {
280
281
const alphabet = 'abcdefghijklmnopqrstuvwxyz';
282
283
- const waiter = waitForCommitOnCurrentResource(page, {
284
- set: {
285
- ['https://atomicdata.dev/properties/name']: alphabet,
286
- },
287
- });
288
-
289
for (const letter of alphabet) {
290
await page.type(editableTitle, letter, { delay: Math.random() * 300 });
291
}
292
293
// wait for commit debounce
294
// make sure no commits are waiting for each other
295
- await waiter;
+ await page.waitForTimeout(1000);
296
297
await page.keyboard.press('Escape');
298
0 commit comments