mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
74 lines
1.5 KiB
TypeScript
74 lines
1.5 KiB
TypeScript
import { EVENT_CODE } from '@element-plus/constants'
|
|
import * as Util from '../src/utils'
|
|
|
|
describe('util', () => {
|
|
it('should be able to fetch focusIntent', () => {
|
|
expect(
|
|
Util.getFocusIntent(
|
|
new KeyboardEvent('mousedown', {
|
|
key: EVENT_CODE.enter,
|
|
})
|
|
)
|
|
).toBe(undefined)
|
|
|
|
expect(
|
|
Util.getFocusIntent(
|
|
new KeyboardEvent('mousedown', {
|
|
key: EVENT_CODE.left,
|
|
})
|
|
)
|
|
).toBe('prev')
|
|
|
|
expect(
|
|
Util.getFocusIntent(
|
|
new KeyboardEvent('mousedown', {
|
|
key: EVENT_CODE.left,
|
|
}),
|
|
'vertical'
|
|
)
|
|
).toBeUndefined()
|
|
expect(
|
|
Util.getFocusIntent(
|
|
new KeyboardEvent('mousedown', {
|
|
key: EVENT_CODE.up,
|
|
}),
|
|
'horizontal'
|
|
)
|
|
).toBeUndefined()
|
|
|
|
expect(
|
|
Util.getFocusIntent(
|
|
new KeyboardEvent('mousedown', {
|
|
key: EVENT_CODE.left,
|
|
}),
|
|
'horizontal',
|
|
'rtl'
|
|
)
|
|
).toBe('next')
|
|
|
|
expect(
|
|
Util.getFocusIntent(
|
|
new KeyboardEvent('mousedown', {
|
|
key: EVENT_CODE.right,
|
|
}),
|
|
'horizontal',
|
|
'rtl'
|
|
)
|
|
).toBe('prev')
|
|
|
|
expect(
|
|
Util.getFocusIntent(
|
|
new KeyboardEvent('mousedown', {
|
|
key: EVENT_CODE.up,
|
|
}),
|
|
'vertical',
|
|
'rtl'
|
|
)
|
|
).toBe('prev')
|
|
})
|
|
|
|
it('should reorder array at index X', () => {
|
|
expect(Util.reorderArray([1, 2, 3, 4], 2)).toStrictEqual([3, 4, 1, 2])
|
|
})
|
|
})
|