9 lines
255 B
TypeScript
9 lines
255 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import updateCaptcha from '@/components/mixins/updateCaptcha'
|
|
|
|
test('update captcha', () => {
|
|
const wrapper = mount(updateCaptcha)
|
|
wrapper.vm.updateCaptcha('value')
|
|
expect(wrapper.vm.captcha).toBe('value')
|
|
})
|