diff --git a/src/modules/task/components/NewTaskForm.test.ts b/src/modules/task/components/NewTaskForm.test.ts index 6c93ce0..2001dbf 100644 --- a/src/modules/task/components/NewTaskForm.test.ts +++ b/src/modules/task/components/NewTaskForm.test.ts @@ -7,6 +7,6 @@ describe('New Task Form', () => { it('displays New Task Form title', () => { const wrapper = mount(NewTaskVue, withPlugins()) - expect(wrapper.text()).toContain('Create a task') + expect(wrapper.text()).toContain('New task') }) }) diff --git a/src/modules/task/components/TaskForm.vue b/src/modules/task/components/TaskForm.vue index 42f4fad..ad723a3 100644 --- a/src/modules/task/components/TaskForm.vue +++ b/src/modules/task/components/TaskForm.vue @@ -85,7 +85,7 @@ const isValid = computed(() => title.value && steps.value.length > 0)