Files
twitch-panels/tests/unit/panelStorage.minimal.test.ts
T
2026-02-05 04:09:47 +05:00

20 lines
399 B
TypeScript

// Use global test functions with globals enabled in config
import { PanelStorage } from "$lib/utils/panelStorage";
let storage: any;
beforeEach(() => {
storage = new PanelStorage();
});
afterEach(() => {
vi.restoreAllMocks();
});
describe("PanelStorage", () => {
it("should create storage instance", () => {
expect(storage).toBeInstanceOf(PanelStorage);
});
});