13 lines
287 B
TypeScript
13 lines
287 B
TypeScript
import { mount } from '@vue/test-utils'
|
|
import { describe, expect, it } from 'vitest'
|
|
|
|
import App from './App.vue'
|
|
|
|
describe('App', () => {
|
|
it('renders the application title', () => {
|
|
const wrapper = mount(App)
|
|
|
|
expect(wrapper.get('h1').text()).toBe('HTTP Client App')
|
|
})
|
|
})
|