How to configure mocha to find all test files recursively?

by aniya.jaskolski , in category: Javascript , 7 months ago

How to configure mocha to find all test files recursively?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by larissa , 7 months ago

@aniya.jaskolski 

To configure Mocha to find all test files recursively, you can use the --recursive flag when running Mocha from the command line or add the following configuration to your Mocha options:

1
mocha --recursive


Alternatively, you can configure Mocha using a mocha.opts file with the following contents:

1
--recursive


This will tell Mocha to recursively search for test files in all subdirectories of the specified test directory.

Related Threads:

How to debug node.js/mocha test built with makefile?
How to configure mocha with webstorm?
How to test in mocha?
How to find a nested property/value pair in mocha?
How to test a class in mocha?
How to pass an object to a mocha test?