* fix: msw handlers for medusa-react storybook * feat: add customer groups query hooks * feat: add create/update customer groups hooks * feat: add customer group batch hooks * feat: add test files, fix import * add customer groups fixture * add customer gorup mock endpoints * add test cases * add hook comments * fix: typos * fix: comments refactor * fix: comment Co-authored-by: fPolic <frane@medusajs.com>
5 lines
168 B
TypeScript
5 lines
168 B
TypeScript
import { setupServer } from "msw/node"
|
|
import { storeHandlers, adminHandlers } from "./handlers"
|
|
|
|
export const server = setupServer(...storeHandlers, ...adminHandlers)
|