aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/common/thirdparty/bootstrap/js/tests/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/common/thirdparty/bootstrap/js/tests/index.html')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/common/thirdparty/bootstrap/js/tests/index.html137
1 files changed, 137 insertions, 0 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/common/thirdparty/bootstrap/js/tests/index.html b/vnfmarket/src/main/webapp/vnfmarket/common/thirdparty/bootstrap/js/tests/index.html
new file mode 100644
index 00000000..471fa36a
--- /dev/null
+++ b/vnfmarket/src/main/webapp/vnfmarket/common/thirdparty/bootstrap/js/tests/index.html
@@ -0,0 +1,137 @@
+<!doctype html>
+<html lang="en">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
+ <title>Bootstrap Plugin Test Suite</title>
+
+ <!-- jQuery -->
+ <script>
+ (function () {
+ var path = '../../assets/js/vendor/jquery-slim.min.js'
+ // get jquery param from the query string.
+ var jQueryVersion = location.search.match(/[?&]jquery=(.*?)(?=&|$)/)
+
+ // If a version was specified, use that version from our vendor folder
+ if (jQueryVersion) {
+ path = 'vendor/jquery-' + jQueryVersion[1] + '.min.js'
+ }
+ document.write('<script src="' + path + '"><\/script>')
+ }())
+ </script>
+ <script src="../../assets/js/vendor/popper.min.js"></script>
+
+ <!-- QUnit -->
+ <link rel="stylesheet" href="vendor/qunit.css" media="screen">
+ <script src="vendor/qunit.js"></script>
+
+ <script>
+ // Disable jQuery event aliases to ensure we don't accidentally use any of them
+ [
+ 'blur',
+ 'focus',
+ 'focusin',
+ 'focusout',
+ 'resize',
+ 'scroll',
+ 'click',
+ 'dblclick',
+ 'mousedown',
+ 'mouseup',
+ 'mousemove',
+ 'mouseover',
+ 'mouseout',
+ 'mouseenter',
+ 'mouseleave',
+ 'change',
+ 'select',
+ 'submit',
+ 'keydown',
+ 'keypress',
+ 'keyup',
+ 'contextmenu'
+ ].forEach(function(eventAlias) {
+ $.fn[eventAlias] = function() {
+ throw new Error('Using the ".' + eventAlias + '()" method is not allowed, so that Bootstrap can be compatible with custom jQuery builds which exclude the "event aliases" module that defines said method. See https://github.com/twbs/bootstrap/blob/master/CONTRIBUTING.md#js')
+ }
+ })
+
+ // Require assert.expect in each test
+ QUnit.config.requireExpects = true
+
+ // See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
+ var log = []
+ var testName
+
+ QUnit.done(function(testResults) {
+ var tests = []
+ for (var i = 0; i < log.length; i++) {
+ var details = log[i]
+ tests.push({
+ name: details.name,
+ result: details.result,
+ expected: details.expected,
+ actual: details.actual,
+ source: details.source
+ })
+ }
+ testResults.tests = tests
+
+ window.global_test_results = testResults
+ })
+
+ QUnit.testStart(function(testDetails) {
+ QUnit.log(function(details) {
+ if (!details.result) {
+ details.name = testDetails.name
+ log.push(details)
+ }
+ })
+ })
+
+ // Display fixture on-screen on iOS to avoid false positives
+ // See https://github.com/twbs/bootstrap/pull/15955
+ if (/iPhone|iPad|iPod/.test(navigator.userAgent)) {
+ QUnit.begin(function() {
+ $('#qunit-fixture').css({ top: 0, left: 0 })
+ })
+
+ QUnit.done(function() {
+ $('#qunit-fixture').css({ top: '', left: '' })
+ })
+ }
+ </script>
+
+ <!-- Transpiled Plugins -->
+ <script src="../dist/util.js"></script>
+ <script src="../dist/alert.js"></script>
+ <script src="../dist/button.js"></script>
+ <script src="../dist/carousel.js"></script>
+ <script src="../dist/collapse.js"></script>
+ <script src="../dist/dropdown.js"></script>
+ <script src="../dist/modal.js"></script>
+ <script src="../dist/scrollspy.js"></script>
+ <script src="../dist/tab.js"></script>
+ <script src="../dist/tooltip.js"></script>
+ <script src="../dist/popover.js"></script>
+
+ <!-- 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/util.js"></script>
+ </head>
+ <body>
+ <div id="qunit-container">
+ <div id="qunit"></div>
+ <div id="qunit-fixture"></div>
+ </div>
+ </body>
+</html>