提交 a3e59427 编写于 作者: Anne_LXM's avatar Anne_LXM

test(editor.test.js): 移除输入日期的测试

上级 6656ee24
...@@ -47,19 +47,16 @@ describe('editor.uvue', () => { ...@@ -47,19 +47,16 @@ describe('editor.uvue', () => {
it('clear', async () => { it('clear', async () => {
await page.callMethod('clear') await page.callMethod('clear')
await page.waitFor(500)
expect(await editor.attribute("placeholder")).toBe("开始输入...") expect(await editor.attribute("placeholder")).toBe("开始输入...")
}) })
it('undo-redo', async () => { it('undo-redo', async () => {
await page.callMethod('insertDate')
await page.callMethod('insertDivider') await page.callMethod('insertDivider')
await page.waitFor(500) await page.waitFor(500)
await page.callMethod('undo') await page.callMethod('undo')
await page.waitFor(500) await page.waitFor(500)
expect(await page.data('undoTest')).toBe(true) expect(await page.data('undoTest')).toBe(true)
await page.callMethod('redo') await page.callMethod('redo')
await page.waitFor(500)
expect(await page.data('redoTest')).toBe(true) expect(await page.data('redoTest')).toBe(true)
}) })
...@@ -82,7 +79,6 @@ describe('editor.uvue', () => { ...@@ -82,7 +79,6 @@ describe('editor.uvue', () => {
]) ])
await page.waitFor(500) await page.waitFor(500)
await page.callMethod('removeFormat') await page.callMethod('removeFormat')
await page.waitFor(500)
expect(await page.data('removeFormatTest')).toBe(true) expect(await page.data('removeFormatTest')).toBe(true)
expect(await page.data('formats')).toEqual({}) expect(await page.data('formats')).toEqual({})
}) })
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册