From a85ce94293b436e6b52acbc80af9e199c0ab51ff Mon Sep 17 00:00:00 2001 From: Allison Kemmerle Date: Thu, 19 Dec 2024 17:00:05 -0500 Subject: [PATCH] Fix tests p2 --- commands/__tests__/create.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/__tests__/create.test.ts b/commands/__tests__/create.test.ts index 388869374..d326ccbc8 100644 --- a/commands/__tests__/create.test.ts +++ b/commands/__tests__/create.test.ts @@ -41,7 +41,7 @@ describe('commands/create', () => { it('should support the correct options', () => { createCommand.builder(yargs); - expect(yargs.option).toHaveBeenCalledTimes(2); + expect(yargs.option).toHaveBeenCalledTimes(3); expect(yargs.option).toHaveBeenCalledWith( 'internal', expect.objectContaining({ type: 'boolean', hidden: true })