Response using Chai-HTTP IV - PUT method

Tell us what’s happening:
Describe your issue in detail here.

Your project link(s)

solution: https://replit.com/@lindomarquinta1/boilerplate-mochachai-30

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.93 Safari/537.36

Challenge: Run Functional Tests on an API Response using Chai-HTTP IV - PUT method

Link to the challenge:

You have removed the closing code for the two initial suite functions.

Opening code:

suite('Functional Tests', function() {
  this.timeout(5000);
  suite('Integration tests with chai-http', function() {

Missing closing code:

  });
});

The closing code should be added right before the next tests which start with const Browser = require('zombie');

2 Likes