1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 09:05:20 -04:00
hugo-extended/test/index.js
XhmikosR 5c84c3d31f Re-add `'use strict' statements.
They are still needed.
2018-12-17 23:14:23 +09:00

16 lines
324 B
JavaScript

/* eslint-env mocha */
'use strict';
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);
});
});
});