Files
volleyball-dev-frontend/node_modules/react-resizable-panels/src/utils/compareLayouts.test.ts
2025-06-02 16:42:16 +00:00

10 lines
292 B
TypeScript

import { compareLayouts } from "./compareLayouts";
describe("compareLayouts", () => {
it("should work", () => {
expect(compareLayouts([1, 2], [1])).toBe(false);
expect(compareLayouts([1], [1, 2])).toBe(false);
expect(compareLayouts([1, 2, 3], [1, 2, 3])).toBe(true);
});
});