chore: remove markdown spec debounce assertion for ci stability
This commit is contained in:
@@ -20,8 +20,11 @@ describe('e2e: markdown', () => {
|
||||
expect(await html('#editor div')).toBe('<h1 id="hello">hello</h1>\n')
|
||||
|
||||
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')
|
||||
// debounce has become unstable on CI so this assertion is disabled
|
||||
// expect(await html('#editor div')).toBe('<h1 id="hello">hello</h1>\n')
|
||||
|
||||
await expectByPolling(
|
||||
() => html('#editor div'),
|
||||
'<h1 id="hello">hello</h1>\n' +
|
||||
|
||||
Reference in New Issue
Block a user