ng test command runs test in watch mode. Watch mode should only enabled if user provides -w flag
I tripped over this in our CI environment too. Added --watch false to get passed it for now. Not a fan of defaulting boolean flags to true.
I changed autoWatch to false in karma.conf.js as workaround...
Yes, autoWatch is true by default in karma. If that's not what you want, you should change that value and ng test will us it.
Cheers!
This issue has been automatically locked due to inactivity.
Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
_This action has been performed automatically by a bot._
Most helpful comment
I tripped over this in our CI environment too. Added
--watch falseto get passed it for now. Not a fan of defaulting boolean flags to true.