8 lines
		
	
	
		
			316 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			316 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
# This script runs umd tests and cleans up after them while preserving the `return_code` for CI
 | 
						|
# UMD tests should only be run after building the commonjs because they reuse some of the commonjs build artifacts
 | 
						|
run-s substitute_umd_bundle run_mocha
 | 
						|
return_code=$?
 | 
						|
npm run clean
 | 
						|
exit $return_code
 |