1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-27 08:58:30 -04:00
hugo-extended/test/index.js
2021-11-03 09:05:59 +02:00

16 lines
334 B
JavaScript

/* eslint-env mocha */
'use strict';
const assert = require('assert').strict;
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.ok(works);
});
});
});