From 33b7bfa9c665208380250887769aa3c76437033f Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 26 Aug 2020 20:29:27 +0300 Subject: [PATCH] fix unit tests Signed-off-by: Roman --- src/common/cluster-store_test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/common/cluster-store_test.ts b/src/common/cluster-store_test.ts index 3fc3e0b60e..c2a74a8796 100644 --- a/src/common/cluster-store_test.ts +++ b/src/common/cluster-store_test.ts @@ -80,10 +80,6 @@ describe("empty config", () => { expect(wsClusters[1].id).toBe("dev"); }) - it("checks if last added cluster becomes active", () => { - expect(clusterStore.activeCluster.id).toBe("dev"); - }) - it("sets active cluster", () => { clusterStore.setActive("foo"); expect(clusterStore.activeCluster.id).toBe("foo");