16 lines
		
	
	
		
			263 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			263 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| mkdir -p .tmp/modules
 | |
| 
 | |
| ./node_modules/.bin/sinopia ./tests/config.yml & echo $! >> .tmp/sinopia.pid
 | |
| 
 | |
| sleep 0.5
 | |
| 
 | |
| npm config get registry >> .tmp/registry
 | |
| 
 | |
| cp ~/.npmrc .tmp/.npmrc
 | |
| 
 | |
| cp tests/.npmrc ~/.npmrc
 | |
| 
 | |
| npm config set registry http://localhost:4873/
 |