twbs--bootstrap/js/tests/index.html

92 lines
2.7 KiB
HTML
Raw Normal View History

2014-03-24 07:30:44 +00:00
<!DOCTYPE html>
<html>
2014-03-24 07:30:44 +00:00
<head>
<meta charset="utf-8">
<title>Bootstrap Plugin Test Suite</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
2014-03-24 07:30:44 +00:00
<!-- jQuery -->
<script src="vendor/jquery.min.js"></script>
2014-03-24 07:30:44 +00:00
<!-- QUnit -->
<link rel="stylesheet" href="vendor/qunit.css" media="screen">
<script src="vendor/qunit.js"></script>
<style>
#qunit-fixture {
top: 0;
left: 0;
}
</style>
2014-03-24 07:30:44 +00:00
<script>
// See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
var log = []
QUnit.done(function (testResults) {
var tests = []
for (var i = 0, len = log.length; i < len; i++) {
var details = log[i]
tests.push({
2014-03-24 07:30:44 +00:00
name: details.name,
result: details.result,
expected: details.expected,
actual: details.actual,
source: details.source
})
}
testResults.tests = tests
window.global_test_results = testResults
})
2014-03-24 07:30:44 +00:00
QUnit.testStart(function (testDetails) {
$(window).scrollTop(0)
QUnit.log(function (details) {
2014-03-24 07:30:44 +00:00
if (!details.result) {
details.name = testDetails.name
log.push(details)
}
})
2014-03-24 07:30:44 +00:00
})
2014-06-18 19:32:18 +00:00
// Cleanup
QUnit.testDone(function () {
$('#qunit-fixture').empty()
$('#modal-test, .modal-backdrop').remove()
})
2014-03-24 07:30:44 +00:00
</script>
2014-03-24 07:30:44 +00:00
<!-- Plugin sources -->
<script>$.support.transition = false</script>
<script src="../../js/alert.js"></script>
<script src="../../js/button.js"></script>
<script src="../../js/carousel.js"></script>
<script src="../../js/collapse.js"></script>
<script src="../../js/dropdown.js"></script>
<script src="../../js/modal.js"></script>
<script src="../../js/scrollspy.js"></script>
<script src="../../js/tab.js"></script>
<script src="../../js/tooltip.js"></script>
<script src="../../js/popover.js"></script>
<script src="../../js/affix.js"></script>
2014-03-24 07:30:44 +00:00
<!-- Unit tests -->
<script src="unit/alert.js"></script>
<script src="unit/button.js"></script>
<script src="unit/carousel.js"></script>
<script src="unit/collapse.js"></script>
<script src="unit/dropdown.js"></script>
<script src="unit/modal.js"></script>
<script src="unit/scrollspy.js"></script>
<script src="unit/tab.js"></script>
<script src="unit/tooltip.js"></script>
<script src="unit/popover.js"></script>
<script src="unit/affix.js"></script>
2014-03-24 07:30:44 +00:00
</head>
<body>
2014-06-18 19:32:18 +00:00
<div id="qunit-container">
2014-03-24 07:30:44 +00:00
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</div>
</body>
</html>