2024-06-14 16:17:46 +02:00
|
|
|
/*
|
2024-09-09 15:57:16 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2024-06-14 16:17:46 +02:00
|
|
|
Copyright 2024 The Matrix.org Foundation C.I.C.
|
|
|
|
|
2024-09-09 15:57:16 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
|
|
|
|
Please see LICENSE files in the repository root for full details.
|
2024-06-14 16:17:46 +02:00
|
|
|
*/
|
|
|
|
|
2024-10-21 15:50:06 +02:00
|
|
|
import { renderHook, act } from "jest-matrix-react";
|
2024-06-14 16:17:46 +02:00
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
import UIStore, { UI_EVENTS } from "../../../src/stores/UIStore";
|
|
|
|
import { useWindowWidth } from "../../../src/hooks/useWindowWidth";
|
2024-06-14 16:17:46 +02:00
|
|
|
|
|
|
|
describe("useWindowWidth", () => {
|
|
|
|
beforeEach(() => {
|
|
|
|
UIStore.instance.windowWidth = 768;
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should return the current width of window, according to UIStore", () => {
|
|
|
|
const { result } = renderHook(() => useWindowWidth());
|
|
|
|
|
|
|
|
expect(result.current).toBe(768);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should update the value when UIStore's value changes", () => {
|
|
|
|
const { result } = renderHook(() => useWindowWidth());
|
|
|
|
|
|
|
|
act(() => {
|
|
|
|
UIStore.instance.windowWidth = 1024;
|
|
|
|
UIStore.instance.emit(UI_EVENTS.Resize);
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(result.current).toBe(1024);
|
|
|
|
});
|
|
|
|
});
|