Skip to content

Commit

Permalink
Removed debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Razican committed Oct 24, 2023
1 parent 4b9f6b1 commit d7e099b
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions test262/results.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ const versionListHTMLItems = await Promise.all(
const response = await fetch(`./refs/tags/${tag}/latest.json`);
const json = await response.json();
const stats = json.a;
console.debug("stats", stats);

releaseData.set(tag, json);

Expand Down Expand Up @@ -212,7 +211,6 @@ async function loadLatestVersionResults(tag) {
function createInfoFromResults(resultsData, nodeID) {
const latest = resultsData[resultsData.length - 1];
const stats = latest.a;
console.debug("stats", stats);

document.getElementById(nodeID).insertAdjacentHTML(
"afterbegin",
Expand Down Expand Up @@ -263,7 +261,7 @@ function showData(data) {
const progressInfoContainer = document.getElementById("progress-info");

const stats = data.a;
console.debug("data.r", data.r);

if (!data.v) {
esVersionPicker.getElementsByTagName("option")[0].selected = true;
esVersionPicker.disabled = true;
Expand Down Expand Up @@ -359,7 +357,7 @@ function addSuite(suiteName, suite, parentID, namespace, upstream) {
}

const stats = findStats(suite);
console.debug("stats", stats);

const tests = suite.t
? Object.keys(suite.t).reduce((r, k) => {
if (shouldDisplayTest(suite.t[k])) {
Expand All @@ -373,7 +371,6 @@ function addSuite(suiteName, suite, parentID, namespace, upstream) {
const newID = (parentID + suiteName).replaceAll(".", "-");
const newInnerID = newID + "-inner";
const headerID = newID + "header";
console.debug("stats", stats);

const html = `<div class="accordion-item">
<h2 id="${headerID}" class="accordion-header">
Expand Down

0 comments on commit d7e099b

Please sign in to comment.