From 09e88f352d97a5a3b4133ed9a21beed9b9cd3dde Mon Sep 17 00:00:00 2001 From: Andrew Duthie Date: Mon, 28 Sep 2020 17:23:03 -0400 Subject: [PATCH] Remove "only" qualifier from asyncHook test case --- test/asyncHook.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/asyncHook.test.ts b/test/asyncHook.test.ts index 0cc4cd1..c5c61c4 100644 --- a/test/asyncHook.test.ts +++ b/test/asyncHook.test.ts @@ -96,7 +96,7 @@ describe("async hook tests", () => { expect(complete).toBe(true); }); - test.only("should wait for arbitrary expectation to pass", async () => { + test("should wait for arbitrary expectation to pass", async () => { const { waitFor } = renderHook(() => null); let actual = 0;