bioweb  0.09.92
C++/Python(django)/JavaScript(angularJS) framework
unit_test.html
1 <!DOCTYPE html>
2 <html>
3 
4  <head>
5  <meta charset="utf-8">
6  <title>QUnit tests</title>
7 
8  <script src="bower_components/jquery/dist/jquery.min.js"></script>
9  <link rel="stylesheet" href="bower_components/qunit/qunit/qunit.css">
10  <script src="bower_components/qunit/qunit/qunit.js"></script>
11  <script src="bower_components/blanket/dist/qunit/blanket.js"></script>
12 
13  <!-- below are elements copied automatically using file_include.py script -->
14  <!-- #include "myapp_include.html" -->
15  <!-- above are elements copied automatically using file_include.py script -->
16 
17  <script src="tests/test01_basic.js" data-cover></script>
18  <script src="tests/test02_services.js" data-cover></script>
19 
20  <STYLE type="text/css">
21  .hidden { display: block; }
22  </STYLE>
23 
24  </head>
25 
26  <body style="background: gray;">
27  <div id="qunit"></div>
28  <div id="qunit-fixture"></div>
29 
30  <!-- below are elements copied automatically using file_include.py script -->
31  <!-- #include "myapp_body.html" -->
32  <!-- above are elements copied automatically using file_include.py script -->
33 
34  </body>
35 
36 </html>