Skip to content

Commit 7d94abc

Browse files
committed
fix(test): correct test name
1 parent aa729de commit 7d94abc

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/svelte/src/components/__tests__/TodoItem.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import TodoItem from '../TodoItem.svelte';
1313
*/
1414

1515
describe('TodoItem', () => {
16-
test('User can submit non-empty todo', async () => {
16+
test('User can interact with the component', async () => {
1717
// ARRANGE
1818
const todo: Todo = {
1919
id: 1,

packages/vue/src/App.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import App from './App.vue';
88

99
const renderAppWithProviders = () => render(App, { global: { plugins: [VueQueryPlugin] } });
1010

11-
describe(App.name, () => {
11+
describe('App', () => {
1212
beforeAll(() => {
1313
todoServer.listen();
1414
});

packages/vue/src/components/__tests__/TodoItem.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import TodoItem from '../TodoItem.vue';
1313
*/
1414

1515
describe('TodoItem', () => {
16-
test('User can submit non-empty todo', async () => {
16+
test('User can interact with the component', async () => {
1717
// ARRANGE
1818
const todo: Todo = {
1919
id: 1,

0 commit comments

Comments
 (0)