UNPKG

@availity/api-axios

Version:

Wrappers for axios designed to work with the Availity portal

9 lines (6 loc) 241 B
// src/mocks/server.js import { setupServer } from 'msw/node'; import handlers from './handlers'; // This configures a request mocking server with the given request handlers. const server = setupServer(...handlers); export default server;