From 0fa2a75f4936d960f703bf19e8f3505962cd628e Mon Sep 17 00:00:00 2001 From: Charles Kornoelje <33156025+charkour@users.noreply.github.com> Date: Sat, 13 Apr 2024 11:25:42 -0400 Subject: [PATCH] chore: remove unused test --- tests/devtools.test.tsx | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/devtools.test.tsx b/tests/devtools.test.tsx index 4252323d68..979727e946 100644 --- a/tests/devtools.test.tsx +++ b/tests/devtools.test.tsx @@ -148,11 +148,6 @@ describe('If there is no extension installed...', () => { createStore(devtools(() => ({ count: 0 }))) }).not.toThrow() }) - - it('does not warn if not enabled', async () => { - createStore(devtools(() => ({ count: 0 }))) - expect(console.warn).not.toBeCalled() - }) }) describe('When state changes...', () => {