From ad7817808deb8f208f037a01cb71bf51a7d0dffc Mon Sep 17 00:00:00 2001 From: Camden Phalen Date: Wed, 20 Nov 2024 14:36:07 -0500 Subject: [PATCH] fix updateDefaultMode test --- config/__tests__/CLIConfiguration.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/__tests__/CLIConfiguration.test.ts b/config/__tests__/CLIConfiguration.test.ts index d56dcfd..331756a 100644 --- a/config/__tests__/CLIConfiguration.test.ts +++ b/config/__tests__/CLIConfiguration.test.ts @@ -121,7 +121,7 @@ describe('config/CLIConfiguration', () => { describe('updateDefaultMode()', () => { it('throws when no config is loaded', () => { expect(() => { - config.updateDefaultMode('newMode'); + config.updateDefaultMode('draft'); }).toThrow(); }); });