@@ -19,7 +19,7 @@ describe('ChooserStep.vue', () => {
19
19
} )
20
20
21
21
// It's only for one state, but this should be enough to test if the logic works properly
22
- it ( 'Check that all computed i18n props return correct values' , async ( ) => {
22
+ it ( 'Check that all computed i18n props return correct values' , async ( ) => {
23
23
await wrapper . setProps ( {
24
24
disabledDue : '' ,
25
25
enabled : true ,
@@ -37,7 +37,7 @@ describe('ChooserStep.vue', () => {
37
37
expect ( wrapper . vm . yesText ) . toBe ( 'stepper.BY.selected' )
38
38
} )
39
39
40
- it ( 'Check that all computed i18n props return correct values after true selected' , async ( ) => {
40
+ it ( 'Check that all computed i18n props return correct values after true selected' , async ( ) => {
41
41
await wrapper . setProps ( {
42
42
disabledDue : undefined ,
43
43
enabled : true ,
@@ -56,7 +56,7 @@ describe('ChooserStep.vue', () => {
56
56
expect ( wrapper . vm . yesText ) . toBe ( 'stepper.BY.selected' )
57
57
} )
58
58
59
- it ( 'Check that all computed i18n props return correct values after false selected' , async ( ) => {
59
+ it ( 'Check that all computed i18n props return correct values after false selected' , async ( ) => {
60
60
await wrapper . setProps ( {
61
61
disabledDue : undefined ,
62
62
enabled : true ,
@@ -85,7 +85,7 @@ describe('ChooserStep.vue', () => {
85
85
expect ( wrapper . vm . radio ) . toBe ( 'no' )
86
86
} )
87
87
88
- it ( 'props:selected true' , async ( ) => {
88
+ it ( 'props:selected true' , async ( ) => {
89
89
await wrapper . setProps ( {
90
90
selected : true ,
91
91
name : 'FS' ,
0 commit comments