Quality Assurance and Testing with Chai - Learn How JavaScript Assertions Work

solution: https://replit.com/@DhruvishaPatel/project

Challenge Information:

Quality Assurance and Testing with Chai - Learn How JavaScript Assertions Work

When i am copying my link it shows test not passed but all my test are running smooth

You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.

What challenge step are you on?


  1. You need to have the .keepOpen() calls after all the .request(server) calls in your functional tests.
chai
  .request(server)
  .keepOpen()

You can see it in the starting code.

https://github.com/freeCodeCamp/boilerplate-mochachai/blob/main/tests/2_functional-tests.js

  1. Your last #approximately unit test isn’t correct.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.