Skip to content

Instantly share code, notes, and snippets.

@scottgamer
Created March 31, 2022 14:16
Show Gist options
  • Select an option

  • Save scottgamer/96763d54c29c03edb74e431aba418056 to your computer and use it in GitHub Desktop.

Select an option

Save scottgamer/96763d54c29c03edb74e431aba418056 to your computer and use it in GitHub Desktop.
mock server
import { setupServer } from "msw/node";
import { handlers } from "./handlers";
const server = setupServer(...handlers);
export default server;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment