init NewTaskForm
This commit is contained in:
11
src/use-cases/task/components/NewTaskForm.test.ts
Normal file
11
src/use-cases/task/components/NewTaskForm.test.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { mount } from '@vue/test-utils'
|
||||
import { describe, expect, it } from 'vitest'
|
||||
import NewTaskVue from './NewTaskForm.vue'
|
||||
|
||||
describe('New Task Form', () => {
|
||||
it('displays New Task Form title', () => {
|
||||
const wrapper = mount(NewTaskVue)
|
||||
|
||||
expect(wrapper.text()).toContain('New Task Form')
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user