Change -C to -c

This commit is contained in:
Alexander Farber 2025-12-18 07:35:53 +01:00
parent f866f7f071
commit d464f61b72
No known key found for this signature in database
2 changed files with 3 additions and 4 deletions

View file

@ -212,8 +212,8 @@ describe('parseArguments', () => {
expect(argv.resume).toBe('session-123');
});
it('should allow -C flag as alias for --continue', async () => {
process.argv = ['node', 'script.js', '-C'];
it('should allow -c flag as alias for --continue', async () => {
process.argv = ['node', 'script.js', '-c'];
const argv = await parseArguments({} as Settings);
expect(argv.continue).toBe(true);
});