Skip to content

Commit

Permalink
chore: bump markdown e2e test wait period
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Aug 14, 2020
1 parent cef97a1 commit 9fb8418
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue/examples/__tests__/markdown.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('e2e: markdown', () => {
await page().type('textarea', '\n## foo\n\n- bar\n- baz')
// assert the output is not updated yet because of debounce
expect(await html('#editor div')).toBe('<h1 id="hello">hello</h1>\n')
await page().waitFor(100)
await page().waitFor(200)
expect(await html('#editor div')).toBe(
'<h1 id="hello">hello</h1>\n' +
'<h2 id="foo">foo</h2>\n' +
Expand Down

0 comments on commit 9fb8418

Please sign in to comment.