Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

change-page.test.ts 311B

123456789101112131415161718192021
  1. import TestState from '../test-utils'
  2. describe('change page 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. })