1<!DOCTYPE html> 2<!-- 3Copyright (C) 2012 Google Inc. All rights reserved. 4 5Redistribution and use in source and binary forms, with or without 6modification, are permitted provided that the following conditions 7are met: 81. Redistributions of source code must retain the above copyright 9 notice, this list of conditions and the following disclaimer. 102. Redistributions in binary form must reproduce the above copyright 11 notice, this list of conditions and the following disclaimer in the 12 documentation and/or other materials provided with the distribution. 13 14THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' 15AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, 16THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 17PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS 18BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 19CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 20SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 21INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 22CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 23ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF 24THE POSSIBILITY OF SUCH DAMAGE. 25--> 26<html> 27<head> 28<link rel="stylesheet" href="../../qunit/qunit/qunit.css"> 29<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> 30<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script> 31<script src="../../qunit/qunit/qunit.js"></script> 32</head> 33<body> 34<h1 id="qunit-header">Test Results Server JavaScript Unit Tests</h1> 35<h2 id="qunit-banner"></h2> 36<div id="qunit-testrunner-toolbar"></div> 37<h2 id="qunit-userAgent"></h2> 38<ol id="qunit-tests"></ol> 39 40<link rel="stylesheet" href="flakiness_dashboard.css"></link> 41<link rel="stylesheet" href="flakiness_dashboard_tests.css"></link> 42<script src="base.js"></script> 43<script src="base_unittests.js"></script> 44<script src="string.js"></script> 45<script src="builders.js"></script> 46<script src="builders_unittest.jsonp"></script> 47<script src="builders_unittests.js"></script> 48<script src="results.js"></script> 49<script src="results_unittests.js"></script> 50<script src="loader.js"></script> 51<script src="loader_unittests.js"></script> 52<script src="history.js"></script> 53<script src="history_unittests.js"></script> 54<script src="dashboard_base.js"></script> 55<script src="ui.js"></script> 56<script src="ui_unittests.js"></script> 57<script> 58 // Mock out loader.request so that we don't actually make xhrs for tests. 59 loader.request = function(url, successCallback, errorCallback) {}; 60</script> 61<script src="flakiness_dashboard.js"></script> 62 63<script> 64window.location.href = '#useTestData=true'; 65</script> 66 67<!-- FIXME: Split this up into multiple unittest.js, e.g. one for builders.js and one for dashboard_base.js. --> 68<script src="flakiness_dashboard_unittests.js"></script> 69 70<script src="aggregate_results.js"></script> 71<script src="aggregate_results_unittest.js"></script> 72<script src="overview.js"></script> 73<script src="overview_unittests.js"></script> 74<script src="load_failures.js"></script> 75<script src="load_failures_unittests.js"></script> 76</body> 77</html> 78