You've already forked hugo-extended
							
							
				mirror of
				https://github.com/jakejarvis/hugo-extended.git
				synced 2025-10-31 00:26:05 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			289 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const assert = require('assert');
 | |
| const binCheck = require('bin-check');
 | |
| const hugoBin = require('../lib');
 | |
| 
 | |
| describe('hugo-bin', () => {
 | |
|   it('should return path to binary and work', () => {
 | |
|     return binCheck(hugoBin, ['version']).then(works => {
 | |
|       assert(works);
 | |
|     });
 | |
|   });
 | |
| });
 | 
