feat:add cypress E2E

This commit is contained in:
黄云飞
2022-03-11 17:24:12 +08:00
parent ead23ab0a1
commit c025f3d19c
13 changed files with 1287 additions and 1 deletions
+15
View File
@@ -0,0 +1,15 @@
/// <reference types="cypress" />
declare namespace Editor {
import('../src/editor/index')
import Editor from '../src/editor/index'
}
declare namespace Cypress {
interface Chainable {
getEditor(): Chainable<Editor>
}
}