Skip to content

Commit 9fb8418

Browse files
committed
chore: bump markdown e2e test wait period
1 parent cef97a1 commit 9fb8418

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/vue/examples/__tests__/markdown.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('e2e: markdown', () => {
1818
await page().type('textarea', '\n## foo\n\n- bar\n- baz')
1919
// assert the output is not updated yet because of debounce
2020
expect(await html('#editor div')).toBe('<h1 id="hello">hello</h1>\n')
21-
await page().waitFor(100)
21+
await page().waitFor(200)
2222
expect(await html('#editor div')).toBe(
2323
'<h1 id="hello">hello</h1>\n' +
2424
'<h2 id="foo">foo</h2>\n' +

0 commit comments

Comments
 (0)