Skip to content

Instantly share code, notes, and snippets.

@imdongchen
Created April 29, 2021 15:41
Show Gist options
  • Save imdongchen/ab6680508d647e0b2a03bda30fa46748 to your computer and use it in GitHub Desktop.
Save imdongchen/ab6680508d647e0b2a03bda30fa46748 to your computer and use it in GitHub Desktop.
// worker.js
import { setupWorker } from 'msw'
export const worker = setupWorker()
// server.js
import { setupServer } from 'msw/node'
/**
* note: this is not actually a server. msw does monkey
* patching to node:http and creates a similar API as in browser
*/
export const server = setupServer()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment