UNPKG

storybook-framework-cedarjs

Version:
20 lines (19 loc) 427 B
function mockRouter() { return { name: "mock-@cedarjs/router", enforce: "pre", transform(code, id) { if (id.includes("src")) { code = code.replace( "'@cedarjs/router'", // TODO(storybook): Use the mock router from @cedarjs/testing instead "'storybook-framework-cedarjs/dist/mocks/MockRouter'" ); } return code; } }; } export { mockRouter };