Hi, I have been trying to get tests to run in parallel using a .mocharc.js file like so:
module.exports = {
parallel: true
}
But, whenever I try it, none of the tests actually run and I am left with this console output:
I20220519-14:41:54.057(10)?
I20220519-14:41:54.065(10)? --------------------------------
I20220519-14:41:54.066(10)? ----- RUNNING SERVER TESTS -----
I20220519-14:41:54.066(10)? --------------------------------
I20220519-14:41:54.066(10)?
I20220519-14:41:54.066(10)?
I20220519-14:41:54.066(10)?
I20220519-14:41:54.066(10)? 0 passing (2ms)
It doesn't even work using the last step of the React Meteor tutorial code. Is this a bug or is there something that I'm not doing correctly?
Thanks in advance for any help.
Hi, I have been trying to get tests to run in parallel using a
.mocharc.jsfile like so:But, whenever I try it, none of the tests actually run and I am left with this console output:
It doesn't even work using the last step of the React Meteor tutorial code. Is this a bug or is there something that I'm not doing correctly?
Thanks in advance for any help.