@@ -12,7 +12,7 @@ import {
12
12
testTimeout
13
13
} from '../src/utils' ;
14
14
15
- describe ( 'e2e commands boolean-arity1 -default-true' , ( ) => {
15
+ describe ( 'e2e commands arity-boolean -default-true' , ( ) => {
16
16
let cli : Cli ;
17
17
let command : string ;
18
18
let options : string [ ] = [ ] ;
@@ -21,7 +21,7 @@ describe('e2e commands boolean-arity1-default-true', () => {
21
21
* testBooleanArity1DefaultTrue
22
22
*/
23
23
const annoDefaultWithoutOverwriteReturnsTrueDesc = 'default without overwrite returns true (anno)' ;
24
- const annoDefaultWithoutOverwriteCommand = [ 'e2e' , 'anno' , 'boolean-arity1 -default-true' ] ;
24
+ const annoDefaultWithoutOverwriteCommand = [ 'e2e' , 'anno' , 'arity-boolean -default-true' ] ;
25
25
const annoDefaultWithoutOverwriteReturnsTrue = async ( cli : Cli ) => {
26
26
cli . run ( ) ;
27
27
await waitForExpect ( async ( ) => {
@@ -35,7 +35,7 @@ describe('e2e commands boolean-arity1-default-true', () => {
35
35
* testBooleanArity1DefaultTrueRegistration
36
36
*/
37
37
const regDefaultWithoutOverwriteReturnsTrueDesc = 'default without overwrite returns true (reg)' ;
38
- const regDefaultWithoutOverwriteCommand = [ 'e2e' , 'reg' , 'boolean-arity1 -default-true' ] ;
38
+ const regDefaultWithoutOverwriteCommand = [ 'e2e' , 'reg' , 'arity-boolean -default-true' ] ;
39
39
const regOptionalWithoutOverwriteReturnsTrue = async ( cli : Cli ) => {
40
40
cli . run ( ) ;
41
41
await waitForExpect ( async ( ) => {
@@ -49,7 +49,7 @@ describe('e2e commands boolean-arity1-default-true', () => {
49
49
* testBooleanArity1DefaultTrue
50
50
*/
51
51
const annoDefaultWithOverwriteFalseReturnsFalseDesc = 'default with overwrite false returns false (anno)' ;
52
- const annoDefaultWithOverwriteFalseCommand = [ 'e2e' , 'anno' , 'boolean-arity1 -default-true' , '--overwrite' , 'false' ] ;
52
+ const annoDefaultWithOverwriteFalseCommand = [ 'e2e' , 'anno' , 'arity-boolean -default-true' , '--overwrite' , 'false' ] ;
53
53
const annoDefaultWithOverwriteFalseReturnsFalse = async ( cli : Cli ) => {
54
54
cli . run ( ) ;
55
55
await waitForExpect ( async ( ) => {
@@ -63,7 +63,7 @@ describe('e2e commands boolean-arity1-default-true', () => {
63
63
* testBooleanArity1DefaultTrueRegistration
64
64
*/
65
65
const regDefaultWithOverwriteFalseReturnsFalseDesc = 'default with overwrite false returns false (reg)' ;
66
- const regDefaultWithOverwriteFalseCommand = [ 'e2e' , 'reg' , 'boolean-arity1 -default-true' , '--overwrite' , 'false' ] ;
66
+ const regDefaultWithOverwriteFalseCommand = [ 'e2e' , 'reg' , 'arity-boolean -default-true' , '--overwrite' , 'false' ] ;
67
67
const regOptionalWithOverwriteFalseReturnsFalse = async ( cli : Cli ) => {
68
68
cli . run ( ) ;
69
69
await waitForExpect ( async ( ) => {
0 commit comments