mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-27 18:10:30 -04:00
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
/* eslint-env mocha */
|
|
|
|
'use strict';
|
|
|
|
const assert = require('assert');
|
|
const binCheck = require('bin-check');
|
|
const hugoBin = require('..');
|
|
|
|
it('Hugo exists and runs?', async () => {
|
|
assert(await binCheck(hugoBin, ['version']));
|
|
});
|