nightwatch
Version:
Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.
12 lines (9 loc) • 390 B
JavaScript
const VERSION = require('./version');
module.exports = function() {
// eslint-disable-next-line no-console
console.log('\n Nightwatch:');
// eslint-disable-next-line no-console
console.log(' version: ' + VERSION.full);
// eslint-disable-next-line no-console
console.log(' changelog: https://github.com/nightwatchjs/nightwatch/releases/tag/v' + VERSION.full + '\n');
};