remove test from slow folder

This commit is contained in:
Stiliyan Tonev (Bark) 2024-07-31 16:44:25 +03:00
parent 59b40b8ae7
commit 8066dc8511

View File

@ -1,20 +0,0 @@
#!/bin/bash
set -x
\. ../../nvm.sh
NVM_TEST_VERSION=v9
# Remove the stuff we're clobbering.
[ -e ../../$NVM_TEST_VERSION ] && rm -R ../../$NVM_TEST_VERSION
# Write it to nvmrc
echo "$NVM_TEST_VERSION" > .nvmrc
output="$(../../nvm-exec 2>&1)";
expected='N/A: version "v9" is not yet installed.
You need to run `nvm install v9` to install and use it.
No NODE_VERSION provided; no .nvmrc file found';
# Skip install, we want to test the error message
diff <(echo "$expected") <(echo "$output")