mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +08:00
21 lines
596 B
TypeScript
21 lines
596 B
TypeScript
|
import { describe, expect, it } from 'vitest'
|
||
|
import { castArray as lodashCastArray } from 'lodash-es'
|
||
|
import { castArray, ensureArray, unique } from '..'
|
||
|
|
||
|
describe('arrays', () => {
|
||
|
it('unique should work', () => {
|
||
|
expect(unique([1, 2, 3, 1])).toEqual([1, 2, 3])
|
||
|
expect(unique([1, 2, 3])).toEqual([1, 2, 3])
|
||
|
})
|
||
|
|
||
|
it('castArray should work', () => {
|
||
|
expect(castArray([1, 2, 3])).toEqual([1, 2, 3])
|
||
|
expect(castArray(0)).toEqual([0])
|
||
|
expect(castArray(undefined)).toEqual([])
|
||
|
})
|
||
|
|
||
|
it('re-export ensureArray', () => {
|
||
|
expect(ensureArray).toBe(lodashCastArray)
|
||
|
})
|
||
|
})
|