From 4a5c908ea7e8823c5242d5191682a1a2a52d9bda Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Thu, 19 Sep 2024 23:09:07 +0500 Subject: [PATCH] add biome lint suggestions --- cursor/main.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cursor/main.test.ts b/cursor/main.test.ts index edce3b0..cdf70e6 100644 --- a/cursor/main.test.ts +++ b/cursor/main.test.ts @@ -22,7 +22,7 @@ describe("cursor", async () => { ); const coder_app = state.resources.find( - (res) => res.type == "coder_app" && res.name == "cursor", + (res) => res.type === "coder_app" && res.name === "cursor", ); expect(coder_app).not.toBeNull(); @@ -79,7 +79,7 @@ describe("cursor", async () => { }); const coder_app = state.resources.find( - (res) => res.type == "coder_app" && res.name == "cursor", + (res) => res.type === "coder_app" && res.name === "cursor", ); expect(coder_app).not.toBeNull();