jameslnewell / xhr-mock

Utility for mocking XMLHttpRequest.
196 stars 48 forks source link

Support params match? #111

Open imcuttle opened 3 years ago

imcuttle commented 3 years ago

support path-to-regexp params?

mock.get('/api/user/:id', (req, res) => {
   // get id
   const { id } = req.params
   return res
})