saleor-dashboard/testUtils/setup.ts

15 lines
444 B
TypeScript
Raw Normal View History

import { configure } from "@testing-library/react";
document.getElementById = () => document.createElement("div");
window.__SALEOR_CONFIG__ = {
API_URL: "http://localhost:8000/graphql/",
APP_MOUNT_URI: "/",
MARKETPLACE_URL: "http//localhost:3000",
SALEOR_APPS_PAGE_PATH: "/saleor-apps",
SALEOR_APPS_JSON_PATH: "/api/saleor-apps",
APP_TEMPLATE_GALLERY_PATH: "/template-gallery",
};
configure({ testIdAttribute: "data-test-id" });