mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-27 18:10:30 -04:00
14 lines
309 B
JavaScript
14 lines
309 B
JavaScript
/* eslint-env mocha */
|
|
|
|
const assert = require('assert');
|
|
const binCheck = require('bin-check');
|
|
const hugoBin = require('..');
|
|
|
|
describe('hugo-bin', () => {
|
|
it('should return path to binary and work', () => {
|
|
return binCheck(hugoBin, ['version']).then(works => {
|
|
assert(works);
|
|
});
|
|
});
|
|
});
|