From c59f9a2556731ad95ab8bd7eefe7fa8a41629834 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 20 Dec 2022 17:45:24 -0300 Subject: use translation context from web-utils, don't use match react-router since is broken --- packages/merchant-backoffice-ui/tests/header.test.tsx | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'packages/merchant-backoffice-ui/tests/header.test.tsx') diff --git a/packages/merchant-backoffice-ui/tests/header.test.tsx b/packages/merchant-backoffice-ui/tests/header.test.tsx index c917366e7..1cf2b7e6c 100644 --- a/packages/merchant-backoffice-ui/tests/header.test.tsx +++ b/packages/merchant-backoffice-ui/tests/header.test.tsx @@ -23,23 +23,23 @@ import { h } from "preact"; import { ProductList } from "../src/components/product/ProductList.js"; // See: https://github.com/preactjs/enzyme-adapter-preact-pure // import { shallow } from 'enzyme'; +import { render } from "@testing-library/preact"; import * as backend from "../src/context/config.js"; -import { render, findAllByText } from "@testing-library/preact"; -import * as i18n from "../src/context/translation.js"; +// import * as i18n from "../src/context/translation.js"; -import * as jedLib from "jed"; -const handler = new jedLib.Jed("en"); +// import * as jedLib from "jed"; +// const handler = new jedLib.Jed("en"); describe("Initial Test of the Sidebar", () => { beforeEach(() => { jest .spyOn(backend, "useConfigContext") .mockImplementation(() => ({ version: "", currency: "" })); - jest.spyOn(i18n, "useTranslationContext").mockImplementation(() => ({ - changeLanguage: () => null, - handler, - lang: "en", - })); + // jest.spyOn(i18n, "useTranslationContext").mockImplementation(() => ({ + // changeLanguage: () => null, + // handler, + // lang: "en", + // })); }); test("Product list renders a table", () => { const context = render( -- cgit v1.2.3