Run Axios with net.Server
under the hood. Good for isolated tests.
const Axios = require('axios-serve')
const app = require('./app.js') // Express app
const request = Axios.createServer(app)
request.get('/')
.then(res => {
console.log(res.status === 200)
})
Axios defaults
and interceptors
properties are available.
Install using npm
npm install axios-serve
MIT