/home/techb158/.nvm/test/slow/nvm exec
NameSizeModeActions
Preamble works and respects 'silent' flag12670775editdlrm
Running 'nvm exec' should pick up .nvmrc version5060775editdlrm
Running 'nvm exec' with help should not parse2060664editdlrm
Running 'nvm exec --lts' should work5490775editdlrm
Running 'nvm exec 0.x' should work5000775editdlrm
setup_dir1370775editdlrm
teardown_dir1750775editdlrm
Edit: /home/techb158/.nvm/test/slow/nvm exec/Running 'nvm exec' should pick up .nvmrc version (506B)
#!/bin/sh die () { echo "$@" ; exit 1; } \. ../../../nvm.sh nvm use 0.10.7 NPM_VERSION_TEN="$(npm --version)" nvm use 1.0.0 && [ "$(node --version)" = "v1.0.0" ] || die "\`nvm use\` failed!" echo "0.10.7" > .nvmrc [ "$(nvm exec npm --version | tail -1)" = "$NPM_VERSION_TEN" ] || die "\`nvm exec\` failed to run with the .nvmrc version" [ "$(nvm exec npm --version | head -1)" = "Found '$PWD/.nvmrc' with version <0.10.7>" ] || die "\`nvm exec\` failed to print out the \"found in .nvmrc\" message"