1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-17 10:22:36 +00:00
bramw_baserow/web-frontend/test/pages/login/index.spec.js

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()
})
})