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.
14 lines
315 B
14 lines
315 B
--- |
|
source: tests/feature_tests/uninstall.rs |
|
expression: "&source.trim()" |
|
--- |
|
set -e |
|
eval "$(fnm env)" |
|
fnm install 12.0.0 |
|
fnm alias 12.0.0 hello |
|
fnm ls | grep v12.0.0 | grep hello |
|
fnm uninstall hello |
|
if [ "$(fnm ls)" != "* system" ]; then |
|
echo 'Expected fnm ls to be "* system", Got: '"$(fnm ls)" |
|
exit 1 |
|
fi
|
|
|