enable typescript support for cypress

This commit is contained in:
Hans Pagel
2020-09-30 17:12:34 +02:00
parent 4fcb4e94bd
commit 82a9654189
5 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
import { capitalize } from '@tiptap/core'
describe('capitalize test', () => {
it('capitalize a word', () => {
const capitalized = capitalize('test')
expect(capitalized).to.eq('Test')
})
})