Skip to content

Commit 90010a9

Browse files
committed
Fix e2e tests
- As one command name was changed
1 parent 6e1ca08 commit 90010a9

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

e2e/spring-shell-e2e-tests/test/sample-e2e-boolean-arity1-default-true.test.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
testTimeout
1313
} from '../src/utils';
1414

15-
describe('e2e commands boolean-arity1-default-true', () => {
15+
describe('e2e commands arity-boolean-default-true', () => {
1616
let cli: Cli;
1717
let command: string;
1818
let options: string[] = [];
@@ -21,7 +21,7 @@ describe('e2e commands boolean-arity1-default-true', () => {
2121
* testBooleanArity1DefaultTrue
2222
*/
2323
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'];
2525
const annoDefaultWithoutOverwriteReturnsTrue = async (cli: Cli) => {
2626
cli.run();
2727
await waitForExpect(async () => {
@@ -35,7 +35,7 @@ describe('e2e commands boolean-arity1-default-true', () => {
3535
* testBooleanArity1DefaultTrueRegistration
3636
*/
3737
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'];
3939
const regOptionalWithoutOverwriteReturnsTrue = async (cli: Cli) => {
4040
cli.run();
4141
await waitForExpect(async () => {
@@ -49,7 +49,7 @@ describe('e2e commands boolean-arity1-default-true', () => {
4949
* testBooleanArity1DefaultTrue
5050
*/
5151
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'];
5353
const annoDefaultWithOverwriteFalseReturnsFalse = async (cli: Cli) => {
5454
cli.run();
5555
await waitForExpect(async () => {
@@ -63,7 +63,7 @@ describe('e2e commands boolean-arity1-default-true', () => {
6363
* testBooleanArity1DefaultTrueRegistration
6464
*/
6565
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'];
6767
const regOptionalWithOverwriteFalseReturnsFalse = async (cli: Cli) => {
6868
cli.run();
6969
await waitForExpect(async () => {

0 commit comments

Comments
 (0)