cypress-xray-plugin
Version:
A Cypress plugin for uploading test results to Xray (test management for Jira)
11 lines (10 loc) • 372 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FetchAllFieldsCommand = void 0;
const command_1 = require("../../../command");
class FetchAllFieldsCommand extends command_1.Command {
async computeResult() {
return await this.parameters.jiraClient.getFields();
}
}
exports.FetchAllFieldsCommand = FetchAllFieldsCommand;