mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2026-08-03 18:55:21 -04:00
Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
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);
|
||||
});
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user