mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-04-17 10:22:36 +00:00
9 lines
237 B
JavaScript
9 lines
237 B
JavaScript
import { mount } from '@vue/test-utils'
|
|
import Index from '@/pages/login/index.vue'
|
|
|
|
describe('Login', () => {
|
|
test('is a Vue instance', () => {
|
|
const wrapper = mount(Index)
|
|
expect(wrapper.isVueInstance()).toBeTruthy()
|
|
})
|
|
})
|