What package does freecodecamp use to test our code we enter?

Hello,

Hope some of you can enlighten me. I want to know what package if any is used to test our code when we want it to run ? If there is no package in particular, how are they doing it ? I’m losing myself searching all the subfolders in the github.

Thanks

1 Like

Welcome there,

A few different packages are used across the curricula. Some being:

  • Chai.js
  • Enzyme.js
  • Synon.js

However, all the tests are just JavaScript that run in the browser.

The main files involving the testing are:

Hope this helps

1 Like