This was causing issues with JavaScript execution stopping on the exception, preventing further processing in the module. This was especially an issue when the module was trying to get a value that it should have been providing in the first place (looking at you SkillSoft)
14 lines
619 B
XML
14 lines
619 B
XML
<component name="ProjectRunConfigurationManager">
|
|
<configuration default="false" name="Mocha Unit Tests" type="mocha-javascript-test-runner">
|
|
<node-interpreter>project</node-interpreter>
|
|
<node-options />
|
|
<mocha-package>$PROJECT_DIR$/node_modules/mocha</mocha-package>
|
|
<working-directory>$PROJECT_DIR$</working-directory>
|
|
<pass-parent-env>true</pass-parent-env>
|
|
<ui>bdd</ui>
|
|
<extra-mocha-options>--watch --require @babel/register</extra-mocha-options>
|
|
<test-kind>PATTERN</test-kind>
|
|
<test-pattern>test/**/*.spec.js</test-pattern>
|
|
<method v="2" />
|
|
</configuration>
|
|
</component> |