2022-04-12 22:50:34 +08:00
|
|
|
import { describe, expect, it } from 'vitest'
|
2024-02-03 12:10:23 +08:00
|
|
|
import { castArray as lodashCastArray } from 'lodash-unified'
|
2022-04-12 22:50:34 +08:00
|
|
|
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)
|
|
|
|
})
|
|
|
|
})
|