Feat/SW-1379 multiroom summary * fix: added early return in hotel query and added missing type annotations * feat(SW-1379): update summary to support multiple rooms and add tests * fix: added check for room number when using isMember for member prices * fix: remove mocked array * fix: minor bug fixes in rate details popup * fix: translation key Approved-by: Pontus Dreij Approved-by: Arvid Norlin
9 lines
253 B
TypeScript
9 lines
253 B
TypeScript
import "@testing-library/jest-dom/jest-globals"
|
|
import "@testing-library/jest-dom"
|
|
|
|
jest.mock("next/navigation", () => ({
|
|
useRouter: jest.fn(),
|
|
usePathname: jest.fn().mockReturnValue("/"),
|
|
useParams: jest.fn().mockReturnValue({ lang: "en" }),
|
|
}))
|