SUMMARY: 39 agents, 90% production readiness (+7.5%) PHASE 2: Service Coverage Expansion (Agents 27-34) - 8,270 lines test code: trading (2,562), backtesting (1,740), compliance (1,462), data (2,506) - 317 new tests across 16 test files PHASE 3: Compilation Fixes & Validation (Agents 35-39) - Fixed 49 errors (11 SQLx + 38 compliance API) - 100% production code compilation - 47.03% coverage baseline (+17.23%) - 90.0% production readiness validated METRICS: - Tests: 700 → 1,532 (+119%) - Coverage: 29.8% → 47.03% (+58%) - Compliance: 0% → 83.3% - Production readiness: 82.5% → 90.0% 🤖 Wave 113 Complete - Claude Code Co-Authored-By: Claude <noreply@anthropic.com>
100 lines
2.3 KiB
JavaScript
100 lines
2.3 KiB
JavaScript
|
|
function next_uncovered(selector, reverse, scroll_selector) {
|
|
function visit_element(element) {
|
|
element.classList.add("seen");
|
|
element.classList.add("selected");
|
|
|
|
if (!scroll_selector) {
|
|
scroll_selector = "tr:has(.selected) td.line-number"
|
|
}
|
|
|
|
const scroll_to = document.querySelector(scroll_selector);
|
|
if (scroll_to) {
|
|
scroll_to.scrollIntoView({behavior: "smooth", block: "center", inline: "end"});
|
|
}
|
|
}
|
|
|
|
function select_one() {
|
|
if (!reverse) {
|
|
const previously_selected = document.querySelector(".selected");
|
|
|
|
if (previously_selected) {
|
|
previously_selected.classList.remove("selected");
|
|
}
|
|
|
|
return document.querySelector(selector + ":not(.seen)");
|
|
} else {
|
|
const previously_selected = document.querySelector(".selected");
|
|
|
|
if (previously_selected) {
|
|
previously_selected.classList.remove("selected");
|
|
previously_selected.classList.remove("seen");
|
|
}
|
|
|
|
const nodes = document.querySelectorAll(selector + ".seen");
|
|
if (nodes) {
|
|
const last = nodes[nodes.length - 1]; // last
|
|
return last;
|
|
} else {
|
|
return undefined;
|
|
}
|
|
}
|
|
}
|
|
|
|
function reset_all() {
|
|
if (!reverse) {
|
|
const all_seen = document.querySelectorAll(selector + ".seen");
|
|
|
|
if (all_seen) {
|
|
all_seen.forEach(e => e.classList.remove("seen"));
|
|
}
|
|
} else {
|
|
const all_seen = document.querySelectorAll(selector + ":not(.seen)");
|
|
|
|
if (all_seen) {
|
|
all_seen.forEach(e => e.classList.add("seen"));
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
const uncovered = select_one();
|
|
|
|
if (uncovered) {
|
|
visit_element(uncovered);
|
|
} else {
|
|
reset_all();
|
|
|
|
const uncovered = select_one();
|
|
|
|
if (uncovered) {
|
|
visit_element(uncovered);
|
|
}
|
|
}
|
|
}
|
|
|
|
function next_line(reverse) {
|
|
next_uncovered("td.uncovered-line", reverse)
|
|
}
|
|
|
|
function next_region(reverse) {
|
|
next_uncovered("span.red.region", reverse);
|
|
}
|
|
|
|
function next_branch(reverse) {
|
|
next_uncovered("span.red.branch", reverse);
|
|
}
|
|
|
|
document.addEventListener("keypress", function(event) {
|
|
const reverse = event.shiftKey;
|
|
if (event.code == "KeyL") {
|
|
next_line(reverse);
|
|
}
|
|
if (event.code == "KeyB") {
|
|
next_branch(reverse);
|
|
}
|
|
if (event.code == "KeyR") {
|
|
next_region(reverse);
|
|
}
|
|
});
|