0
|
1 <!DOCTYPE html>
|
|
2 <html>
|
|
3 <head>
|
|
4 <meta charset="utf-8">
|
|
5 <title>Tablesaw Test Suite</title>
|
|
6 <link rel="stylesheet" href="../dist/dependencies/qunit.css">
|
|
7 <link rel="stylesheet" href="../dist/tablesaw.css">
|
|
8
|
|
9 <script src="../dist/dependencies/jquery.js"></script>
|
|
10 <script src="../dist/dependencies/qunit.js"></script>
|
|
11 <!-- Removing access to jQuery and $. But it'll still be available as $jQ, if
|
|
12 you REALLY want to mess around with jQuery in the console. REMEMBER WE
|
|
13 ARE TESTING A PLUGIN HERE, THIS HELPS ENSURE BEST PRACTICES. REALLY. -->
|
|
14 <script>
|
|
15 window.$jQ = jQuery.noConflict(true);
|
|
16 </script>
|
|
17
|
|
18 <script src="../dist/tablesaw.js"></script>
|
|
19 <script src="tablesaw_test.js"></script>
|
|
20 </head>
|
|
21 <body>
|
|
22 <div id="qunit"></div>
|
|
23 <div id="qunit-fixture"></div>
|
|
24 </body>
|
|
25 </html>
|