import { floorSearch } from "../src/components/LayoutMap/utils"; describe('search floor num', () => { test("", () => { expect(floorSearch(1234, [3000, 2000, 1000])) .toStrictEqual({ currentNode: 1000 }) }) })