element-plus/packages/utils/__tests__/strings.vitest.ts

26 lines
697 B
TypeScript
Raw Normal View History

2022-04-12 22:50:34 +08:00
import * as vueShared from '@vue/shared'
import { describe, expect, it } from 'vitest'
import {
camelize,
capitalize,
escapeStringRegexp,
hyphenate,
kebabCase,
} from '..'
describe('strings', () => {
it('escapeStringRegexp should work', () => {
expect(escapeStringRegexp('foo')).toMatchInlineSnapshot('"foo"')
expect(escapeStringRegexp('**\\//aa^~#$')).toMatchInlineSnapshot(
'"\\\\*\\\\*\\\\\\\\//aa\\\\^~#\\\\$"'
)
})
it('re-export from @vue/shared', () => {
expect(camelize).toBe(vueShared.camelize)
expect(capitalize).toBe(vueShared.capitalize)
expect(hyphenate).toBe(vueShared.hyphenate)
expect(kebabCase).toBe(vueShared.hyphenate)
})
})