The section on the ‘Run Functional Tests using a Headless Browser’ page (https://www.freecodecamp.org/learn/quality-assurance/quality-assurance-and-testing-with-chai/run-functional-tests-using-a-headless-browser) reads as:
- The there is
1
<span id='dates'></span>
element.
and I believe it should instead be read as:
- That there is
1
<span id='dates'></span>
element.
Also, there is a section on the ‘Simulate Actions Using a Headless Browser’ page (https://www.freecodecamp.org/learn/quality-assurance/quality-assurance-and-testing-with-chai/simulate-actions-using-a-headless-browser) that reads as:
Mocha allows you to prepare the ground running some code before the actual tests.
I’m not sure what exactly how it was meant to be read, but I guess it could have been intended to mean something like:
Mocha allows you to prepare the ground work by running some code before the actual tests.