@qualitywatcher/codeceptjs-reporter
Version:
QualityWatcher plugin reporter for CodeceptJS
78 lines (77 loc) • 3.48 kB
JavaScript
;
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.QualityWatcher = void 0;
const Axios = __importStar(require("axios"));
const safe_1 = __importDefault(require("colors/safe"));
const util_1 = require("./util");
class QualityWatcher {
constructor(options) {
this.options = options;
this.url =
"https://api.qualitywatcher.com/prod/nimble/v1/test-runner/add-automated-test-execution";
}
async publishResults(payload) {
var _a;
(0, util_1.logger)(safe_1.default.green(safe_1.default.bold(`(${safe_1.default.underline("QualityWatcher")})\n`)));
(0, util_1.logger)(safe_1.default.grey("- Publishing results..."));
try {
const response = await Axios.default.request({
method: "post",
url: `${this.url}`,
headers: {
"Content-Type": "application/json",
Authorization: `Bear ${this.options.password}`,
},
data: JSON.stringify(payload),
});
(0, util_1.logger)(`${safe_1.default.grey("- Results published: ")} ${safe_1.default.green(`${((_a = response === null || response === void 0 ? void 0 : response.data) === null || _a === void 0 ? void 0 : _a.link) || "See QualityWatcher for details"}`)}`);
}
catch (error) {
(0, util_1.logger)(safe_1.default.red(`- There was an error publishing results: ${error}`));
if (error === null || error === void 0 ? void 0 : error.response) {
const { data } = error === null || error === void 0 ? void 0 : error.response;
if (data.error.code === 400) {
(0, util_1.logger)(safe_1.default.red(`- Bad Request: ${data.error.message}`));
return;
}
else {
(0, util_1.logger)(safe_1.default.red(`- ${data.error.message}`));
return;
}
}
else {
if (error.status === 500) {
(0, util_1.logger)(safe_1.default.red(`- Ensure that your API key is correct.`));
return;
}
}
}
}
}
exports.QualityWatcher = QualityWatcher;