Skip to content

Commit 11dfe66

Browse files
committed
fix(test): update deploy help test to check --dry-run instead of --plan
The --plan alias was removed in the breaking change commit. Confidence: high Scope-risk: narrow
1 parent 7852365 commit 11dfe66

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/cli/commands/deploy/__tests__/deploy.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ describe('deploy --help', () => {
1818
expect(result.stdout.includes('--yes')).toBeTruthy();
1919
expect(result.stdout.includes('--verbose')).toBeTruthy();
2020
expect(result.stdout.includes('--json')).toBeTruthy();
21-
expect(result.stdout.includes('--plan')).toBeTruthy();
21+
expect(result.stdout.includes('--dry-run')).toBeTruthy();
2222
});
2323
});
2424

0 commit comments

Comments
 (0)