Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
B
bootstrap
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
bootstrap
Commits
d74aee40
Commit
d74aee40
authored
Mar 24, 2014
by
XhmikosR
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tests/index.html: re-indent.
parent
cfb7093d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
68 additions
and
68 deletions
+68
-68
js/tests/index.html
js/tests/index.html
+68
-68
No files found.
js/tests/index.html
View file @
d74aee40
<!DOCTYPE
HTML
>
<!DOCTYPE
html
>
<html>
<head>
<meta
charset=
"utf-8"
>
<title>
Bootstrap Plugin Test Suite
</title>
<head>
<meta
charset=
"utf-8"
>
<title>
Bootstrap Plugin Test Suite
</title>
<!-- jQuery -->
<script
src=
"vendor/jquery.js"
></script>
<!-- jQuery -->
<script
src=
"vendor/jquery.js"
></script>
<!-- QUnit -->
<link
rel=
"stylesheet"
href=
"vendor/qunit.css"
media=
"screen"
>
<script
src=
"vendor/qunit.js"
></script>
<script>
// See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
var
log
=
[]
QUnit
.
done
=
function
(
test_results
)
{
var
tests
=
log
.
map
(
function
(
details
)
{
return
{
name
:
details
.
name
,
result
:
details
.
result
,
expected
:
details
.
expected
,
actual
:
details
.
actual
,
source
:
details
.
source
}
})
test_results
.
tests
=
tests
<!-- QUnit -->
<link
rel=
"stylesheet"
href=
"vendor/qunit.css"
media=
"screen"
>
<script
src=
"vendor/qunit.js"
></script>
<script>
// See https://github.com/axemclion/grunt-saucelabs#test-result-details-with-qunit
var
log
=
[]
QUnit
.
done
=
function
(
test_results
)
{
var
tests
=
log
.
map
(
function
(
details
)
{
return
{
name
:
details
.
name
,
result
:
details
.
result
,
expected
:
details
.
expected
,
actual
:
details
.
actual
,
source
:
details
.
source
}
})
test_results
.
tests
=
tests
// Delaying results a bit because in real-world scenario you won't get them immediately
setTimeout
(
function
()
{
window
.
global_test_results
=
test_results
},
2000
)
}
// Delaying results a bit because in real-world scenario you won't get them immediately
setTimeout
(
function
()
{
window
.
global_test_results
=
test_results
},
2000
)
}
QUnit
.
testStart
(
function
(
testDetails
)
{
QUnit
.
log
=
function
(
details
)
{
if
(
!
details
.
result
)
{
details
.
name
=
testDetails
.
name
log
.
push
(
details
)
QUnit
.
testStart
(
function
(
testDetails
)
{
QUnit
.
log
=
function
(
details
)
{
if
(
!
details
.
result
)
{
details
.
name
=
testDetails
.
name
log
.
push
(
details
)
}
}
}
})
</script>
})
</script>
<!-- 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>
<!-- 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>
<!-- 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>
<!-- 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>
</head>
<body>
<div>
<div
id=
"qunit"
></div>
<div
id=
"qunit-fixture"
></div>
</div>
</body>
</head>
<body>
<div>
<div
id=
"qunit"
></div>
<div
id=
"qunit-fixture"
></div>
</div>
</body>
</html>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment