From 7842fe5e0fd1d77184507645a9e46ed185c61c91 Mon Sep 17 00:00:00 2001 From: Saleel Date: Sun, 8 Sep 2024 23:51:49 +0530 Subject: [PATCH] circuit: add expect.assertions to test --- packages/circuits/tests/body-masker.test.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/circuits/tests/body-masker.test.ts b/packages/circuits/tests/body-masker.test.ts index c1fd513b..332dc724 100644 --- a/packages/circuits/tests/body-masker.test.ts +++ b/packages/circuits/tests/body-masker.test.ts @@ -43,5 +43,7 @@ describe("ByteMask Circuit", () => { } catch (error) { expect(error).toBeTruthy(); } + + expect.assertions(1); }); });