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.
		
		
		
		
		
			
		
			
				
					
					
						
							17 lines
						
					
					
						
							658 B
						
					
					
				
			
		
		
	
	
							17 lines
						
					
					
						
							658 B
						
					
					
				#!/bin/sh | 
						|
 | 
						|
\. ../../../nvm.sh | 
						|
 | 
						|
die () { echo "$@" ; exit 1; } | 
						|
 | 
						|
OUTPUT="$(nvm unalias node 2>&1)" | 
						|
EXPECTED_OUTPUT="node is a default (built-in) alias and cannot be deleted." | 
						|
[ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "trying to remove a built-in alias should fail with '$EXPECTED_OUTPUT', got '$OUTPUT'" | 
						|
 | 
						|
nvm alias node stable || die '`nvm alias node stable` failed' | 
						|
 | 
						|
nvm unalias node || die '`nvm unalias node` failed' | 
						|
 | 
						|
OUTPUT="$(nvm unalias node 2>&1)" | 
						|
EXPECTED_OUTPUT="node is a default (built-in) alias and cannot be deleted." | 
						|
[ "$OUTPUT" = "$EXPECTED_OUTPUT" ] || die "trying to remove a built-in alias should fail with '$EXPECTED_OUTPUT', got '$OUTPUT'"
 | 
						|
 |