Skip to content

Commit 19fc035

Browse files
committed
Quick edit less flaky
1 parent 39f0752 commit 19fc035

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

browser/e2e/tests/e2e.spec.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -280,19 +280,13 @@ test.describe('data-browser', async () => {
280280

281281
const alphabet = 'abcdefghijklmnopqrstuvwxyz';
282282

283-
const waiter = waitForCommitOnCurrentResource(page, {
284-
set: {
285-
['https://atomicdata.dev/properties/name']: alphabet,
286-
},
287-
});
288-
289283
for (const letter of alphabet) {
290284
await page.type(editableTitle, letter, { delay: Math.random() * 300 });
291285
}
292286

293287
// wait for commit debounce
294288
// make sure no commits are waiting for each other
295-
await waiter;
289+
await page.waitForTimeout(1000);
296290

297291
await page.keyboard.press('Escape');
298292

0 commit comments

Comments
 (0)