From 38917d8ef170f7276865dc718d9dc22d6b0c7e04 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Thu, 19 Feb 2026 16:53:49 -0600 Subject: [PATCH] fix(cli): resolve lint error in experimentCommand.test.ts --- packages/cli/src/ui/commands/experimentCommand.test.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/cli/src/ui/commands/experimentCommand.test.ts b/packages/cli/src/ui/commands/experimentCommand.test.ts index e459451c0f..e8c8306f2c 100644 --- a/packages/cli/src/ui/commands/experimentCommand.test.ts +++ b/packages/cli/src/ui/commands/experimentCommand.test.ts @@ -122,7 +122,10 @@ describe('experimentCommand', () => { ); it('should unset an experiment', async () => { - mockContext.services.settings.merged.experimental = { + + ( + mockContext.services.settings.merged as Record + ).experimental = { 'enable-preview': true, }; await unsetCommand?.action!(mockContext, 'enable-preview');