From 5cfed8c5edf7cbb2514f2dcca9588db2ab262356 Mon Sep 17 00:00:00 2001 From: Robert Konigsberg Date: Tue, 29 May 2012 11:00:42 -0400 Subject: [PATCH] Make auto_tests easier to read, and also, add easy filter for identifying failed tests. --- auto_tests/misc/local.html | 108 ++++++++++++++++++++++++++++++--------------- 1 file changed, 72 insertions(+), 36 deletions(-) diff --git a/auto_tests/misc/local.html b/auto_tests/misc/local.html index 0af3cff..e9feab4 100644 --- a/auto_tests/misc/local.html +++ b/auto_tests/misc/local.html @@ -44,10 +44,26 @@ + @@ -189,10 +225,10 @@ if (selector != null) { // running a test var list = createAttached("ul", selector); var parent = list.parentElement; var createLink = function(parent, text, url) { - var li = createAttached("li", parent); - var a = createAttached("a", li); - a.innerText = text; - a.href = url; + var li = createAttached("li", parent); + var a = createAttached("a", li); + a.innerText = text; + a.href = url; } if (tc == null) { description.innerHTML = "Test cases:"; -- 2.7.4