feat: add medusa-react (#913)
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
const { server } = require("./mocks/server")
|
||||
|
||||
beforeAll(() => {
|
||||
server.listen({
|
||||
onUnhandledRequest: (req) => {
|
||||
console.log("found an error")
|
||||
console.log(req)
|
||||
},
|
||||
})
|
||||
})
|
||||
|
||||
beforeEach(() => {
|
||||
window.localStorage.clear()
|
||||
})
|
||||
|
||||
afterEach(() => {
|
||||
server.resetHandlers()
|
||||
window.localStorage.clear()
|
||||
})
|
||||
|
||||
afterAll(() => server.close())
|
||||
Reference in New Issue
Block a user