You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
359 B

  1. module.exports = [
  2. {
  3. request: {
  4. method: 'GET'
  5. },
  6. response: {
  7. status: 200,
  8. body: [
  9. { id: 1, name: 'conifer', maxHeight: 115 },
  10. { id: 2, name: 'eucalyptus', maxHeight: 210 }
  11. ]
  12. }
  13. },
  14. {
  15. request: {
  16. method: 'POST'
  17. },
  18. response: {
  19. status: 201,
  20. location: '/tree/1'
  21. }
  22. }
  23. ]