From 811c07f4f1899e9c82bd1612f3fa67ddb5f4fb92 Mon Sep 17 00:00:00 2001 From: AkashSDas Date: Sat, 10 Aug 2024 14:43:55 +0530 Subject: [PATCH] fix tests in frontend --- frontend/src/__tests__/store/editor/slice.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/__tests__/store/editor/slice.test.ts b/frontend/src/__tests__/store/editor/slice.test.ts index 5fc1324..6368365 100644 --- a/frontend/src/__tests__/store/editor/slice.test.ts +++ b/frontend/src/__tests__/store/editor/slice.test.ts @@ -2,6 +2,6 @@ import { describe, it, expect } from "vitest"; describe("Editor Slice", () => { it("should be true", () => { - expect(true).toBe(false); + expect(true).toBe(true); }); });