Skip to content

Handle path parameters #2286

Answered by mastermatt
Niryo asked this question in Q&A
Discussion options

You must be logged in to vote

This would require regex. Nock doesn't have any special handling for path params.

const pathRe = /^\/(?<name>[^/]+)\/getProfile$/

nock('https://bla.com')
  .get(pathRe)
  .reply(200, (path) -> {
    const { name } = path.match(pathRe).groups
    return { name }
  })

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by mastermatt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants