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
b063de54
Commit
b063de54
authored
Jun 18, 2014
by
Heinrich Fenkart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clean alert unit tests up
parent
95d7c9c3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
15 deletions
+15
-15
js/tests/unit/alert.js
js/tests/unit/alert.js
+15
-15
No files found.
js/tests/unit/alert.js
View file @
b063de54
...
...
@@ -19,11 +19,14 @@ $(function () {
})
test
(
'
should provide no conflict
'
,
function
()
{
ok
(
!
$
.
fn
.
alert
,
'
alert was set back to undefined (org value)
'
)
strictEqual
(
$
.
fn
.
alert
,
undefined
,
'
alert was set back to undefined (org value)
'
)
})
test
(
'
should return element
'
,
function
()
{
ok
(
$
(
document
.
body
).
bootstrapAlert
()[
0
]
==
document
.
body
,
'
document.body returned
'
)
test
(
'
should return jquery collection containing the element
'
,
function
()
{
var
$el
=
$
(
'
<div/>
'
)
var
$alert
=
$el
.
bootstrapAlert
()
ok
(
$alert
instanceof
$
,
'
returns jquery collection
'
)
strictEqual
(
$alert
[
0
],
$el
[
0
],
'
collection contains element
'
)
})
test
(
'
should fade element out on clicking .close
'
,
function
()
{
...
...
@@ -31,40 +34,37 @@ $(function () {
'
<a class="close" href="#" data-dismiss="alert">×</a>
'
+
'
<p><strong>Holy guacamole!</strong> Best check yo self, you
\'
re not looking too good.</p>
'
+
'
</div>
'
var
alert
=
$
(
alertHTML
).
bootstrapAlert
()
var
$
alert
=
$
(
alertHTML
).
bootstrapAlert
()
alert
.
find
(
'
.close
'
).
click
()
$
alert
.
find
(
'
.close
'
).
click
()
ok
(
!
alert
.
hasClass
(
'
in
'
)
,
'
remove .in class on .close click
'
)
equal
(
$alert
.
hasClass
(
'
in
'
),
false
,
'
remove .in class on .close click
'
)
})
test
(
'
should remove element when clicking .close
'
,
function
()
{
$
.
support
.
transition
=
false
var
alertHTML
=
'
<div class="alert-message warning fade in">
'
+
'
<a class="close" href="#" data-dismiss="alert">×</a>
'
+
'
<p><strong>Holy guacamole!</strong> Best check yo self, you
\'
re not looking too good.</p>
'
+
'
</div>
'
var
alert
=
$
(
alertHTML
).
appendTo
(
'
#qunit-fixture
'
).
bootstrapAlert
()
var
$
alert
=
$
(
alertHTML
).
appendTo
(
'
#qunit-fixture
'
).
bootstrapAlert
()
ok
(
$
(
'
#qunit-fixture
'
).
find
(
'
.alert-message
'
).
length
,
'
element added to dom
'
)
notEqual
(
$
(
'
#qunit-fixture
'
).
find
(
'
.alert-message
'
).
length
,
0
,
'
element added to dom
'
)
alert
.
find
(
'
.close
'
).
click
()
$
alert
.
find
(
'
.close
'
).
click
()
ok
(
!
$
(
'
#qunit-fixture
'
).
find
(
'
.alert-message
'
).
length
,
'
element removed from dom
'
)
equal
(
$
(
'
#qunit-fixture
'
).
find
(
'
.alert-message
'
).
length
,
0
,
'
element removed from dom
'
)
})
test
(
'
should not fire closed when close is prevented
'
,
function
()
{
$
.
support
.
transition
=
false
stop
()
$
(
'
<div class="alert"/>
'
)
.
on
(
'
close.bs.alert
'
,
function
(
e
)
{
e
.
preventDefault
()
ok
(
true
)
ok
(
true
,
'
close event fired
'
)
start
()
})
.
on
(
'
closed.bs.alert
'
,
function
()
{
ok
(
false
)
ok
(
false
,
'
closed event fired
'
)
})
.
bootstrapAlert
(
'
close
'
)
})
...
...
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