There are two places where mrt is runned as a separate process:
/spec/lib/atmosphere.js. The baseCommand variable specifies that mrt should be available in PATH.
/spec/lib/runner.js. The meteoriteExecutable variable stores absolute path to mrt.js.
If there is no mrt command in PATH, tests will fail. This is not specified in document - you ask for npm install to be run only. I think atmosphere.js should be modified in a way similar to runner.js.
There are two places where
mrt
is runned as a separate process:/spec/lib/atmosphere.js
. ThebaseCommand
variable specifies thatmrt
should be available in PATH./spec/lib/runner.js
. ThemeteoriteExecutable
variable stores absolute path tomrt.js
.If there is no
mrt
command in PATH, tests will fail. This is not specified in document - you ask fornpm install
to be run only. I thinkatmosphere.js
should be modified in a way similar torunner.js
.