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

9 lines
230 B
JavaScript

import { mount } from '@vue/test-utils'
import Index from '@/pages/index.vue'
describe('Home', () => {
test('is a Vue instance', () => {
const wrapper = mount(Index)
expect(wrapper.isVueInstance()).toBeTruthy()
})
})