Skip to content
Snippets Groups Projects

Add storybook and tests ICSHWI-9199

Merged John Sparger requested to merge add-storybook-and-tests-ICSHWI-9199 into develop
All threads resolved!
2 files
+ 10
9
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 2
2
@@ -34,12 +34,12 @@ export function mockAPI() {
function getParameters(req, pattern) {
const match = matchPath(
new URL(req.url).pathname,
{
path: "/api/v1" + pattern,
exact: true,
strict: false
});
},
new URL(req.url).pathname);
return match?.params;
}
Loading