This community-built FAQ covers the “Install Mocha II” exercise from the lesson “Automate and Organize Tests”.
Paths and Courses
This exercise can be found in the following Codecademy content:
Web Development
Learn JavaScript Unit Testing
FAQs on the exercise Install Mocha II
There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply (
) below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply (
) below!
Agree with a comment or answer? Like (
) to up-vote the contribution!
Need broader help or resources? Head here.
Looking for motivation to keep learning? Join our wider discussions.
Learn more about how to use this guide.
Found a bug? Report it!
Have a question about your account or billing? Reach out to our customer support team!
None of the above? Find out where to ask other questions here!
I am practising running tests on my own computer in VS Code with Mocha. I’ve been following the instructions from this lesson and have successfully installed Mocha, have set the value of “test” in the “scripts” object to “mocha”, and if I type “npm test”, the test suite runs as long as the file containing the test code is called test.js.
However, this lesson earlier stated that it’s best to associate test code with implementation code, with a naming structure such as index.js and index-test.js
If I name the files as such and try to run tests by typing “npm test”, “npm index-test” or “npm index-test.js” the tests don’t work.
So my questions are - am I doing something wrong? Or do I HAVE to name my test file “test.js” in order for the tests to work? In which case, how do I organise a folder structure for a project with multiple JS files which all need tests - do I just have one test.js file and import code from all implementation files and do all tests in one file? Or do I have one test file per implementation file and name them all “test.js” and just store them in separate folders? That seems a little overkill.
Thanks in advance for any help! Let me know if any parts of my question need clarifying.
1 Like
I think I have found the answer with the help of this website:
I can have a folder named “test” and within that I have whatever test files I want, e.g. index-test.js
If I then run npm test, it works.