1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 09:05:20 -04:00
hugo-extended/test/index.js
2016-10-19 23:36:34 +09:00

12 lines
286 B
JavaScript

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);
});
});
});