Files
hiring-test-one/example/mock/mocks/five.js

6 lines
119 B
JavaScript

module.exports = {
response: function (ctx, id) {
ctx.body = `<h1>id: ${id}, name: ${ctx.query.name}</h1>`
}
}