You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
500 B
16 lines
500 B
11 years ago
|
#!/bin/sh
|
||
|
|
||
8 years ago
|
die () { echo "$@" ; exit 1; }
|
||
11 years ago
|
|
||
8 years ago
|
\. ../../../nvm.sh
|
||
11 years ago
|
|
||
|
nvm use 0.10
|
||
|
NPM_VERSION_TEN="$(npm --version)"
|
||
9 years ago
|
TEST_STRING="foo bar"
|
||
11 years ago
|
|
||
9 years ago
|
nvm use 1.0.0 && [ "$(node --version)" = "v1.0.0" ] || die "\`nvm use\` failed!"
|
||
11 years ago
|
|
||
9 years ago
|
[ "$(nvm exec 0.10 npm --version | tail -1)" = "$NPM_VERSION_TEN" ] || die "\`nvm exec\` failed to run with the correct version"
|
||
11 years ago
|
|
||
9 years ago
|
[ "$(nvm exec 0.10 bash -c "printf '$TEST_STRING'" | tail -1)" = "$TEST_STRING" ] || die "\`nvm exec\` failed to run with a command including whitespace"
|