We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cef97a1 commit 9fb8418Copy full SHA for 9fb8418
packages/vue/examples/__tests__/markdown.spec.ts
@@ -18,7 +18,7 @@ describe('e2e: markdown', () => {
18
await page().type('textarea', '\n## foo\n\n- bar\n- baz')
19
// assert the output is not updated yet because of debounce
20
expect(await html('#editor div')).toBe('<h1 id="hello">hello</h1>\n')
21
- await page().waitFor(100)
+ await page().waitFor(200)
22
expect(await html('#editor div')).toBe(
23
'<h1 id="hello">hello</h1>\n' +
24
'<h2 id="foo">foo</h2>\n' +
0 commit comments