diff --git a/src/common/__tests__/hotbar-store.test.ts b/src/common/__tests__/hotbar-store.test.ts index 805ad6a711..929c785860 100644 --- a/src/common/__tests__/hotbar-store.test.ts +++ b/src/common/__tests__/hotbar-store.test.ts @@ -26,6 +26,7 @@ describe("HotbarStore", () => { it("adds a hotbar", () => { const hotbarStore = HotbarStore.getInstanceOrCreate(); + hotbarStore.load(); hotbarStore.add({ name: "hottest" }); expect(hotbarStore.hotbars.length).toEqual(2); });