junit-converter
Version:
Test report files to JUnit XML converter
15 lines • 439 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TestType = void 0;
/**
* Test types supported by the converter
*/
var TestType;
(function (TestType) {
TestType["JUNIT"] = "junit";
TestType["NUNIT"] = "nunit";
TestType["XUNIT"] = "xunit";
TestType["TRX"] = "trx";
TestType["CTRF"] = "ctrf";
})(TestType || (exports.TestType = TestType = {}));
//# sourceMappingURL=interfaces.js.map