diff --git a/public/app/features/commandPalette/CommandPaletteDynamicRegistry.test.ts b/public/app/features/commandPalette/CommandPaletteDynamicRegistry.test.ts index 0a7cf8899d6..8f3a5ae2d7d 100644 --- a/public/app/features/commandPalette/CommandPaletteDynamicRegistry.test.ts +++ b/public/app/features/commandPalette/CommandPaletteDynamicRegistry.test.ts @@ -259,9 +259,7 @@ describe('CommandPaletteDynamicRegistry', () => { }); await registry.getState(); - expect(consoleLogSpy).toHaveBeenCalledWith( - expect.stringContaining('Registered provider: test-plugin/0') - ); + expect(consoleLogSpy).toHaveBeenCalledWith(expect.stringContaining('Registered provider: test-plugin/0')); consoleLogSpy.mockRestore(); process.env.NODE_ENV = originalNodeEnv;