Compare commits

...

2 Commits

Author SHA1 Message Date
Atsushi Yamamoto
f99f8741b9
Merge 639aaf9cd5612045b689ddb9fa6172d61509b3f8 into 24deac7ac53a5b435ce592807ff015a9e788a1fa 2024-07-30 17:29:30 +00:00
Atsushi Yamamoto
639aaf9cd5
[Tests] nvm exec/nvm run: add --silent tests 2016-10-11 23:43:10 -07:00
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#!/bin/sh
set -ex
die () { echo $@ ; exit 1; }
. ../../../nvm.sh
echo "0.10.7" > .nvmrc
# Check nvm run without --silent
OUTPUT="$(nvm run --version | awk '{print $6}' | head -1)"
EXPECTED_OUTPUT="<0.10.7>"
[ "${OUTPUT}" = "${EXPECTED_OUTPUT}" ] \
|| die "\`nvm run\` failed to run; did not match with the .nvmrc version; got >${OUTPUT}<"
OUTPUT="$(nvm run --silent --version)"
EXPECTED_OUTPUT=""
[ "${OUTPUT}" = "${EXPECTED_OUTPUT}" ] \
|| die "\`nvm run --silent\` failed to run silently; expected no output, got >${OUTPUT}<"
# Output shouldn't be silent if --silent flag is not at the third argument position
OUTPUT="$(nvm run --version --silent)"
EXPECTED_OUTPUT=""
[ "${OUTPUT}" != "${EXPECTED_OUTPUT}" ] \
|| die "\`nvm run --version --silent\` should not be silent; expected >${OUTPUT}<, got no output"