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.
		
		
		
		
		
			
		
			
				
					
					
						
							22 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							22 lines
						
					
					
						
							1.1 KiB
						
					
					
				| #!/bin/sh | |
|  | |
| die () { echo $@ ; exit 1; } | |
|  | |
| . ../../nvm.sh | |
|  | |
| nvm_has_system_node() { return 0; } | |
| nvm_print_npm_version() { return ' (npm v1.2.3)'; } | |
| EXPECTED_OUTPUT="Now using system version of node: $(node -v)$(nvm_print_npm_version)" | |
| [ "$(nvm use system 2>&1 | tail -n1)" = "$EXPECTED_OUTPUT" ] || die "Could not use system version of node" | |
| EXPECTED_OUTPUT="" | |
| [ "$(nvm use --silent system 2>&1 | tail -n1)" = "$EXPECTED_OUTPUT" ] || die "Could not use system version of node or --silent was not silent" | |
|  | |
| nvm_has_system_node() { return 1; } | |
| nvm_print_npm_version() { return ''; } | |
| EXPECTED_OUTPUT="System version of node not found." | |
| [ "$(nvm use system 2>&1 | tail -n1)" = "$EXPECTED_OUTPUT" ] || die "Did not report error, system node not found" | |
| nvm use system 2>&1 > /dev/null || [ $? -eq 127 ] || die "Did not return error code, system node not found" | |
| EXPECTED_OUTPUT="" | |
| [ "$(nvm use --silent system 2>&1 | tail -n1)" = "$EXPECTED_OUTPUT" ] || die "Did not report error, system node not found or --silent was not silent" | |
| nvm use --silent system 2>&1 > /dev/null || [ $? -eq 127 ] || die "Did not return error code, system node not found or --silent was not silent" | |
| 
 | |
| 
 |