aboutsummaryrefslogtreecommitdiff
path: root/js/tests/index.html
blob: 355c3f0af3a59ede09b65a30a6fc6f6e0665a7ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE HTML>
<html>
<head>
  <title>Bootstrap Plugin Test Suite</title>

  <!-- jquery -->
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>

  <!-- qunit -->
  <link rel="stylesheet" href="vendor/qunit.css" type="text/css" media="screen" />
  <script src="vendor/qunit.js"></script>

  <!--  plugin sources -->
  <script src="../../js/bootstrap-alerts.js"></script>
  <script src="../../js/bootstrap-dropdown.js"></script>
  <script src="../../js/bootstrap-modal.js"></script>
  <script src="../../js/bootstrap-tabs.js"></script>
  <script src="../../js/bootstrap-twipsy.js"></script>
  <script src="../../js/bootstrap-popover.js"></script>
  <script src="../../js/bootstrap-buttons.js"></script>

  <!-- unit tests -->
  <script src="unit/bootstrap-alerts.js"></script>
  <script src="unit/bootstrap-dropdown.js"></script>
  <script src="unit/bootstrap-modal.js"></script>
  <script src="unit/bootstrap-popover.js"></script>
  <script src="unit/bootstrap-tabs.js"></script>
  <script src="unit/bootstrap-twipsy.js"></script>
  <script src="unit/bootstrap-buttons.js"></script>

<body>
  <div>
    <h1 id="qunit-header">Bootstrap Plugin Test Suite</h1>
    <h2 id="qunit-banner"></h2>
    <h2 id="qunit-userAgent"></h2>
    <ol id="qunit-tests"></ol>
    <div id="qunit-runoff"></div>
  </div>
</body>
</html>