11 lines
		
	
	
		
			128 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			128 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| 
								 | 
							
								BIN = ./node_modules/.bin/
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								test:
							 | 
						||
| 
								 | 
							
									@${BIN}mocha \
							 | 
						||
| 
								 | 
							
										--reporter spec \
							 | 
						||
| 
								 | 
							
										--bail
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								clean:
							 | 
						||
| 
								 | 
							
									@rm -rf node_modules
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								.PHONY: test clean
							 |