11 lines
339 B
TypeScript
11 lines
339 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import PlayerListVuew from '../../src/views/PlayerListView.vue'
|
|
import { describe, expect, test } from 'vitest'
|
|
|
|
describe('PlayerListVuew.vue', () => {
|
|
test('renders home vue', () => {
|
|
const wrapper = mount(PlayerListVuew)
|
|
expect(wrapper.text()).toMatch('Ready to create an app?')
|
|
})
|
|
})
|