UNPKG

artes

Version:

The simplest way to automate UI and API tests using Cucumber-style steps.

16 lines (14 loc) 403 B
const { showHelp } = require("./helper"); const { createProject } = require("./projectCreator"); const { generateReport } = require("./reportGenerator"); const { runTests } = require("./testRunner"); const { showVersion } = require("./versionChecker"); const { cleanUp } = require("./cleaner"); module.exports = { createProject, generateReport, runTests, showHelp, showVersion, cleanUp, };