Files
hiring-test-one/example/mock/mocks/search.mock.js
Lloyd Brookes 85686e67b5 mock responses
2015-11-19 16:03:01 +00:00

21 lines
328 B
JavaScript

module.exports = [
{
request: {
accepts: 'json'
},
response: {
status: 200,
body: { id: 2, name: 'eucalyptus', maxHeight: 210 }
}
},
{
request: {
accepts: 'xml'
},
response: {
status: 200,
body: '<tree id="2" name="eucalyptus" maxHeight="210"/>'
}
}
]