spec-link
Version:
A library for managing test specifications and integrations with test management tools
15 lines • 585 B
JavaScript
;
// src/reporters/consoleReporter.ts
Object.defineProperty(exports, "__esModule", { value: true });
exports.reportToConsole = reportToConsole;
function reportToConsole(results) {
results.forEach((result) => {
console.log(`File: ${result.filePath}`);
Object.entries(result.groupedTests).forEach(([describe, tests]) => {
console.log(` Describe: ${describe}`);
tests.forEach((test) => console.log(` Test without Qase ID: ${test}`));
});
console.log('---');
});
}
//# sourceMappingURL=console-reporter.js.map