File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
svelte/src/components/__tests__ Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import TodoItem from '../TodoItem.svelte';
13
13
*/
14
14
15
15
describe ( 'TodoItem' , ( ) => {
16
- test ( 'User can submit non-empty todo ' , async ( ) => {
16
+ test ( 'User can interact with the component ' , async ( ) => {
17
17
// ARRANGE
18
18
const todo : Todo = {
19
19
id : 1 ,
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ import App from './App.vue';
8
8
9
9
const renderAppWithProviders = ( ) => render ( App , { global : { plugins : [ VueQueryPlugin ] } } ) ;
10
10
11
- describe ( App . name , ( ) => {
11
+ describe ( ' App' , ( ) => {
12
12
beforeAll ( ( ) => {
13
13
todoServer . listen ( ) ;
14
14
} ) ;
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import TodoItem from '../TodoItem.vue';
13
13
*/
14
14
15
15
describe ( 'TodoItem' , ( ) => {
16
- test ( 'User can submit non-empty todo ' , async ( ) => {
16
+ test ( 'User can interact with the component ' , async ( ) => {
17
17
// ARRANGE
18
18
const todo : Todo = {
19
19
id : 1 ,
You can’t perform that action at this time.
0 commit comments