1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-28 04:30:31 -04:00
hugo-extended/test/index.js
2021-12-07 09:43:40 +02:00

15 lines
315 B
JavaScript

'use strict';
const assert = require('assert').strict;
const binCheck = require('bin-check');
const hugoBin = require('..');
const { test } = require('uvu');
test('should return path to binary and work', () => {
return binCheck(hugoBin, ['version']).then(works => {
assert.ok(works);
});
});
test.run();