tests.html 839 B

12345678910111213141516171819202122232425262728
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset='UTF-8' />
  5. <meta http-equiv='content-type' content='text/html; charset=utf-8' />
  6. <title>bootstrap-treeview.js Tests</title>
  7. <link rel='stylesheet' href='./lib/qunit-1.12.0.css'>
  8. <script src='./lib/jquery.js'></script>
  9. <script src='./lib/qunit-1.12.0.js'></script>
  10. <script src="./lib/blanket.min.js"></script>
  11. <script data-cover src='./lib/bootstrap-treeview.js'></script>
  12. <!-- your tests, any and all to run with the given fixtures below -->
  13. <script src='./tests.js'></script>
  14. </head>
  15. <body>
  16. <div id="qunit"></div> <!-- QUnit fills this with results, etc -->
  17. <div id='qunit-fixture'>
  18. <!-- any HTML you want to be present in each test (will be reset for each test) -->
  19. <div id="treeview"></div>
  20. </div>
  21. </body>
  22. </html>