From: Evan You Date: Fri, 14 Aug 2020 21:07:42 +0000 (-0400) Subject: chore: bump markdown e2e test wait period X-Git-Tag: v3.0.0-rc.6~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9fb84187f03c2cc5ae15a2cd8cd9577ea798a4e1;p=thirdparty%2Fvuejs%2Fcore.git chore: bump markdown e2e test wait period --- diff --git a/packages/vue/examples/__tests__/markdown.spec.ts b/packages/vue/examples/__tests__/markdown.spec.ts index f5496f8aa6..b6101a9df7 100644 --- a/packages/vue/examples/__tests__/markdown.spec.ts +++ b/packages/vue/examples/__tests__/markdown.spec.ts @@ -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('

hello

\n') - await page().waitFor(100) + await page().waitFor(200) expect(await html('#editor div')).toBe( '

hello

\n' + '

foo

\n' +