您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

edit.test.ts 304B

123456789101112131415161718192021
  1. import TestState from '../test-utils'
  2. describe('edit command', () => {
  3. const tt = new TestState()
  4. tt.resetDocumentState()
  5. it('does command', () => {
  6. // TODO
  7. null
  8. })
  9. it('un-does command', () => {
  10. // TODO
  11. null
  12. })
  13. it('re-does command', () => {
  14. // TODO
  15. null
  16. })
  17. })