@testmonitor/testmonitor-cli
Version:
The TestMonitor CLI lets you interact with the TestMonitor platform directly from your terminal or CI pipelines.
13 lines (8 loc) • 366 B
JavaScript
import { Command } from 'commander';
import { submitJUnitXMLCommand } from './submit-junit-xml-command.js';
const junitGroup = new Command('junit')
.name('junit')
.description('Commands for JUnit XML report submission.')
.helpOption('-h, --help', 'Display help for command.');
junitGroup.addCommand(submitJUnitXMLCommand);
export default junitGroup;