@@ -22,7 +22,7 @@ describe('e2e commands default-value', () => {
22
22
* testDefaultValue
23
23
*/
24
24
const annoDefaultWithoutArgReturnsHiDesc = 'default without arg returns hi (anno)' ;
25
- const annoDefaultWithoutArgCommand = [ 'e2e anno default-value' ] ;
25
+ const annoDefaultWithoutArgCommand = [ 'e2e' , ' anno' , ' default-value'] ;
26
26
const annoDefaultWithoutArgReturnsHi = async ( cli : Cli ) => {
27
27
cli . run ( ) ;
28
28
await waitForExpect ( async ( ) => {
@@ -36,7 +36,7 @@ describe('e2e commands default-value', () => {
36
36
* testDefaultValueRegistration
37
37
*/
38
38
const regDefaultWithoutArgReturnsHiDesc = 'default without arg returns hi (reg)' ;
39
- const regDefaultWithoutArgCommand = [ 'e2e reg default-value' ] ;
39
+ const regDefaultWithoutArgCommand = [ 'e2e' , ' reg' , ' default-value'] ;
40
40
const regOptionalWithoutArgReturnsHi = async ( cli : Cli ) => {
41
41
cli . run ( ) ;
42
42
await waitForExpect ( async ( ) => {
@@ -50,7 +50,7 @@ describe('e2e commands default-value', () => {
50
50
* testDefaultValue
51
51
*/
52
52
const annoDefaultWithArgReturnsFooDesc = 'default with arg returns foo (anno)' ;
53
- const annoDefaultWithArgCommand = [ 'e2e anno default-value --arg1 foo' ] ;
53
+ const annoDefaultWithArgCommand = [ 'e2e' , ' anno' , ' default-value' , ' --arg1' , ' foo'] ;
54
54
const annoDefaultWithArgReturnsFoo = async ( cli : Cli ) => {
55
55
cli . run ( ) ;
56
56
await waitForExpect ( async ( ) => {
@@ -64,7 +64,7 @@ describe('e2e commands default-value', () => {
64
64
* testDefaultValueRegistration
65
65
*/
66
66
const regDefaultWithArgReturnsFooDesc = 'default with arg returns foo (reg)' ;
67
- const regDefaultWithArgCommand = [ 'e2e reg optional-value --arg1 foo' ] ;
67
+ const regDefaultWithArgCommand = [ 'e2e' , ' reg' , ' optional-value' , ' --arg1' , ' foo'] ;
68
68
const regDefaultWithArgReturnsFoo = async ( cli : Cli ) => {
69
69
cli . run ( ) ;
70
70
await waitForExpect ( async ( ) => {
@@ -78,7 +78,7 @@ describe('e2e commands default-value', () => {
78
78
* testDefaultValueBoolean1 - 1
79
79
*/
80
80
const annoDefaultValueBoolean1WithoutArgReturnsFalseDesc = 'default boolean1 without arg returns false (anno)' ;
81
- const annoDefaultValueBoolean1WithoutArgCommand = [ 'e2e anno default-value-boolean1' ] ;
81
+ const annoDefaultValueBoolean1WithoutArgCommand = [ 'e2e' , ' anno' , ' default-value-boolean1'] ;
82
82
const annoDefaultValueBoolean1WithoutArgReturnsFalse = async ( cli : Cli ) => {
83
83
cli . run ( ) ;
84
84
await waitForExpect ( async ( ) => {
@@ -92,7 +92,7 @@ describe('e2e commands default-value', () => {
92
92
* testDefaultValueBoolean1Registration - 1
93
93
*/
94
94
const regDefaultValueBoolean1WithoutArgReturnsFalseDesc = 'default boolean1 without arg returns false (reg)' ;
95
- const regDefaultValueBoolean1WithoutArgCommand = [ 'e2e reg default-value-boolean1' ] ;
95
+ const regDefaultValueBoolean1WithoutArgCommand = [ 'e2e' , ' reg' , ' default-value-boolean1'] ;
96
96
const regDefaultValueBoolean1WithoutArgReturnsFalse = async ( cli : Cli ) => {
97
97
cli . run ( ) ;
98
98
await waitForExpect ( async ( ) => {
@@ -106,7 +106,7 @@ describe('e2e commands default-value', () => {
106
106
* testDefaultValueBoolean1 - 2
107
107
*/
108
108
const annoDefaultValueBoolean2WithArgReturnsTrueDesc = 'default boolean1 with arg returns true (anno)' ;
109
- const annoDefaultValueBoolean2WithArgCommand = [ 'e2e anno default-value-boolean1 --arg1' ] ;
109
+ const annoDefaultValueBoolean2WithArgCommand = [ 'e2e' , ' anno' , ' default-value-boolean1' , ' --arg1'] ;
110
110
const annoDefaultValueBoolean2WithArgReturnsTrue = async ( cli : Cli ) => {
111
111
cli . run ( ) ;
112
112
await waitForExpect ( async ( ) => {
@@ -120,7 +120,7 @@ describe('e2e commands default-value', () => {
120
120
* testDefaultValueBoolean1Registration - 2
121
121
*/
122
122
const regDefaultValueBoolean2WithArgReturnsTrueDesc = 'default boolean1 with arg returns true (reg)' ;
123
- const regDefaultValueBoolean2WithArgCommand = [ 'e2e reg default-value-boolean1 --arg1' ] ;
123
+ const regDefaultValueBoolean2WithArgCommand = [ 'e2e' , ' reg' , ' default-value-boolean1' , ' --arg1'] ;
124
124
const regDefaultValueBoolean2WithArgReturnsTrue = async ( cli : Cli ) => {
125
125
cli . run ( ) ;
126
126
await waitForExpect ( async ( ) => {
@@ -134,7 +134,7 @@ describe('e2e commands default-value', () => {
134
134
* testDefaultValueBoolean1 - 3
135
135
*/
136
136
const annoDefaultValueBoolean3WithArgReturnsFalseDesc = 'default boolean1 with arg returns false (anno)' ;
137
- const annoDefaultValueBoolean3WithArgCommand = [ 'e2e anno default-value-boolean1 --arg1 false' ] ;
137
+ const annoDefaultValueBoolean3WithArgCommand = [ 'e2e' , ' anno' , ' default-value-boolean1' , ' --arg1' , ' false'] ;
138
138
const annoDefaultValueBoolean3WithArgReturnsFalse = async ( cli : Cli ) => {
139
139
cli . run ( ) ;
140
140
await waitForExpect ( async ( ) => {
@@ -148,7 +148,7 @@ describe('e2e commands default-value', () => {
148
148
* testDefaultValueBoolean1Registration - 3
149
149
*/
150
150
const regDefaultValueBoolean3WithArgReturnsFalseDesc = 'default boolean1 with arg returns false (reg)' ;
151
- const regDefaultValueBoolean3WithArgCommand = [ 'e2e reg default-value-boolean1 --arg1 false' ] ;
151
+ const regDefaultValueBoolean3WithArgCommand = [ 'e2e' , ' reg' , ' default-value-boolean1' , ' --arg1' , ' false'] ;
152
152
const regDefaultValueBoolean3WithArgReturnsFalse = async ( cli : Cli ) => {
153
153
cli . run ( ) ;
154
154
await waitForExpect ( async ( ) => {
@@ -162,7 +162,7 @@ describe('e2e commands default-value', () => {
162
162
* testDefaultValueBoolean2 - 1
163
163
*/
164
164
const annoDefaultValueBoolean2WithoutArgReturnsTrueDesc = 'default boolean2 without arg returns true (anno)' ;
165
- const annoDefaultValueBoolean2WithoutArgCommand = [ 'e2e anno default-value-boolean2' ] ;
165
+ const annoDefaultValueBoolean2WithoutArgCommand = [ 'e2e' , ' anno' , ' default-value-boolean2'] ;
166
166
const annoDefaultValueBoolean2WithoutArgReturnsTrue = async ( cli : Cli ) => {
167
167
cli . run ( ) ;
168
168
await waitForExpect ( async ( ) => {
@@ -176,7 +176,7 @@ describe('e2e commands default-value', () => {
176
176
* testDefaultValueBoolean2Registration - 1
177
177
*/
178
178
const regDefaultValueBoolean2WithoutArgReturnsTrueDesc = 'default boolean2 without arg returns true (reg)' ;
179
- const regDefaultValueBoolean2WithoutArgCommand = [ 'e2e reg default-value-boolean2' ] ;
179
+ const regDefaultValueBoolean2WithoutArgCommand = [ 'e2e' , ' reg' , ' default-value-boolean2'] ;
180
180
const regDefaultValueBoolean2WithoutArgReturnsTrue = async ( cli : Cli ) => {
181
181
cli . run ( ) ;
182
182
await waitForExpect ( async ( ) => {
@@ -190,7 +190,7 @@ describe('e2e commands default-value', () => {
190
190
* testDefaultValueBoolean3 - 1
191
191
*/
192
192
const annoDefaultValueBoolean3WithoutArgReturnsFalseDesc = 'default boolean3 without arg returns false (anno)' ;
193
- const annoDefaultValueBoolean3WithoutArgCommand = [ 'e2e anno default-value-boolean3' ] ;
193
+ const annoDefaultValueBoolean3WithoutArgCommand = [ 'e2e' , ' anno' , ' default-value-boolean3'] ;
194
194
const annoDefaultValueBoolean3WithoutArgReturnsFalse = async ( cli : Cli ) => {
195
195
cli . run ( ) ;
196
196
await waitForExpect ( async ( ) => {
@@ -204,7 +204,7 @@ describe('e2e commands default-value', () => {
204
204
* testDefaultValueBoolean3Registration - 1
205
205
*/
206
206
const regDefaultValueBoolean3WithoutArgReturnsFalseDesc = 'default boolean3 without arg returns false (reg)' ;
207
- const regDefaultValueBoolean3WithoutArgCommand = [ 'e2e reg default-value-boolean3' ] ;
207
+ const regDefaultValueBoolean3WithoutArgCommand = [ 'e2e' , ' reg' , ' default-value-boolean3'] ;
208
208
const regDefaultValueBoolean3WithoutArgReturnsFalse = async ( cli : Cli ) => {
209
209
cli . run ( ) ;
210
210
await waitForExpect ( async ( ) => {
0 commit comments