diff options
-rw-r--r-- | share/www/custom_test.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/share/www/custom_test.html b/share/www/custom_test.html index 742da7d7..2021bdcf 100644 --- a/share/www/custom_test.html +++ b/share/www/custom_test.html @@ -32,6 +32,11 @@ specific language governing permissions and limitations under the License. } } + function Tequals(expect, found, descr) { + var mesg = "expected '" + expect + "', got '" + found + "' " + descr; + T(expect === found, mesg); + } + $(function() { $("#status").removeClass("failure").removeClass("success"); $("#viewcode button.run").click(function() { |