mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
f83761dd2a
* style(eslint-config): add eslint rules to restrict the imports of lodash * fix: lint error * test(components): [infinite-scroll] test error * test(components): [infinite-scroll] test error
30 lines
648 B
TypeScript
30 lines
648 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import { merge } from 'lodash-unified'
|
|
|
|
const makeMount = <C, O, E>(element: C, defaultOptions: O) => {
|
|
return (props: (E | O) | (E & O) = {} as E) =>
|
|
mount(element, merge({}, defaultOptions, props))
|
|
}
|
|
|
|
interface Options {
|
|
data?: () => {
|
|
[key: string]: unknown
|
|
}
|
|
methods?: {
|
|
[key: string]: (...args: unknown[]) => any
|
|
}
|
|
}
|
|
|
|
export const makeMountFunc = <T extends Record<string, unknown>>(
|
|
defaultOptions: T
|
|
) => {
|
|
return (template: string, options: Options) => {
|
|
return mount({
|
|
...merge({}, defaultOptions, options),
|
|
template,
|
|
})
|
|
}
|
|
}
|
|
|
|
export default makeMount
|