1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-09-15 22:35:31 -04:00

Clean up tests

This commit is contained in:
2020-03-25 11:47:51 -04:00
parent 5f83a8752a
commit 1e11110408
3 changed files with 12 additions and 28 deletions

View File

@@ -2,8 +2,11 @@
const bin = require('.');
bin.run(['version']).then(() => {
console.log('✔ Hugo installed successfully!');
}).catch(error => {
console.error('✖ ERROR: Hugo installation failed. :(\n', error);
});
(async () => {
try {
await bin.run(['version']);
console.log(' Hugo installed successfully!');
} catch (error) {
console.error('✖ ERROR: Hugo installation failed. :(\n', error);
}
})();