mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
Improve js/tests/index.html
- Improve comments. - Remove `transition.js` script load as `transition.js` unit test doesn't exist.
This commit is contained in:
parent
db32afe6cf
commit
a4dac463e0
1 changed files with 5 additions and 6 deletions
|
@ -3,20 +3,20 @@
|
||||||
<head>
|
<head>
|
||||||
<title>Bootstrap Plugin Test Suite</title>
|
<title>Bootstrap Plugin Test Suite</title>
|
||||||
|
|
||||||
<!-- jquery -->
|
<!-- jQuery -->
|
||||||
<script src="vendor/jquery.js"></script>
|
<script src="vendor/jquery.js"></script>
|
||||||
|
|
||||||
<!-- qunit -->
|
<!-- QUnit -->
|
||||||
<link rel="stylesheet" href="vendor/qunit.css" media="screen">
|
<link rel="stylesheet" href="vendor/qunit.css" media="screen">
|
||||||
<script src="vendor/qunit.js"></script>
|
<script src="vendor/qunit.js"></script>
|
||||||
<script>
|
<script>
|
||||||
// See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
|
// See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
|
||||||
QUnit.done(function(results) {
|
QUnit.done(function (results) {
|
||||||
window.global_test_results = results
|
window.global_test_results = results
|
||||||
})
|
})
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<!-- plugin sources -->
|
<!-- Plugin sources -->
|
||||||
<script>$.support.transition = false</script>
|
<script>$.support.transition = false</script>
|
||||||
<script src="../../js/alert.js"></script>
|
<script src="../../js/alert.js"></script>
|
||||||
<script src="../../js/button.js"></script>
|
<script src="../../js/button.js"></script>
|
||||||
|
@ -30,8 +30,7 @@
|
||||||
<script src="../../js/popover.js"></script>
|
<script src="../../js/popover.js"></script>
|
||||||
<script src="../../js/affix.js"></script>
|
<script src="../../js/affix.js"></script>
|
||||||
|
|
||||||
<!-- unit tests -->
|
<!-- Unit tests -->
|
||||||
<script src="unit/transition.js"></script>
|
|
||||||
<script src="unit/alert.js"></script>
|
<script src="unit/alert.js"></script>
|
||||||
<script src="unit/button.js"></script>
|
<script src="unit/button.js"></script>
|
||||||
<script src="unit/carousel.js"></script>
|
<script src="unit/carousel.js"></script>
|
||||||
|
|
Loading…
Add table
Reference in a new issue