Added runAllTests. Useful.
[dygraphs.git] / auto_tests / misc / local.html
CommitLineData
7165f97b 1<!-- A local source file that allows dygraph developers to test locally. -->
644eff8b
RK
2<html>
3<head>
7165f97b
RK
4 <!-- Standard Dygraph scripts -->
5 <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
6 <!--[if IE]>
7 <script type="text/javascript" src="../../excanvas.js"></script>
8 <![endif]-->
9 <script type="text/javascript" src="../../strftime/strftime-min.js"></script>
10 <script type="text/javascript" src="../../rgbcolor/rgbcolor.js"></script>
11 <script type="text/javascript" src="../../dygraph-canvas.js"></script>
12 <script type="text/javascript" src="../../dygraph.js"></script>
13
14 <!-- Scripts for automated tests -->
15 <script type="text/javascript" src="../lib/jquery-1.4.2.js"></script>
16 <script type="text/javascript" src="../lib/Asserts.js"></script>
17 <script type="text/javascript" src="fake-jstestdriver.js"></script>
18 <script type="text/javascript" src="../tests/Proxy.js"></script>
19 <script type="text/javascript" src="../tests/CanvasAssertions.js"></script>
20 <script type="text/javascript" src="../tests/sanity.js"></script>
21 <script type="text/javascript" src="../tests/simple_drawing.js"></script>
644eff8b
RK
22</head>
23<body>
24 <div id='graph'></div>
25 This file is really nothing more than all the tests coalesced into a single
26 HTML file. To run a test, open a Javascript console and execute, for
27 instance,<br>
28 <code>tc = new SimpleDrawingTestCase() ;<br>
29 tc.runTest("testDrawSimpleRangePlusOne")</code>
30</body>
31</html>