UNPKG

artes

Version:

The package provide step definitions and user writes feature files, and the package handles automation, with optional POM files and custom step definitions.

14 lines (11 loc) 314 B
const fs = require("fs"); const { moduleConfig } = require("../imports/commons"); function showVersion() { const packageJson = JSON.parse( fs.readFileSync(moduleConfig.modulePackageJsonPath, "utf-8"), ); console.log(`📌 Artes version: ${packageJson.version}`); } module.exports = { showVersion, };