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