vitest-teamcity-reporter
Version:
A TeamCity reporter for vitest.
10 lines (9 loc) • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class MissingResultError extends Error {
constructor(test) {
var _a, _b;
super(`Test: "${test.name}" from - "${(_b = (_a = test.file) === null || _a === void 0 ? void 0 : _a.filepath) !== null && _b !== void 0 ? _b : 'unknown'}" missing a result after file test process finished`);
}
}
exports.default = MissingResultError;