mirror of
https://github.com/ueberdosis/tiptap.git
synced 2025-06-24 04:35:35 +08:00
12 lines
238 B
TypeScript
12 lines
238 B
TypeScript
/// <reference types="cypress" />
|
|
|
|
import { capitalize } from '@tiptap/core'
|
|
|
|
describe('capitalize test', () => {
|
|
it('capitalize a word', () => {
|
|
const capitalized = capitalize('test')
|
|
|
|
expect(capitalized).to.eq('Test')
|
|
})
|
|
})
|