Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
rivets
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
36de3dba
authored
2012-12-30 15:22:51 -0500
by
Terrance A. Snyder
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
uncomment failing test in current master
1 parent
d261b434
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
spec/rivets/functional.js
spec/rivets/functional.js
View file @
36de3db
...
...
@@ -152,7 +152,6 @@ describe('Functional', function() {
expect
(
el
.
getElementsByTagName
(
'li'
)[
0
].
className
).
toBe
(
'bar'
);
});
/*
it
(
'should insert items between any surrounding elements'
,
function
(){
firstItem
=
document
.
createElement
(
'li'
);
lastItem
=
document
.
createElement
(
'li'
);
...
...
@@ -168,7 +167,7 @@ describe('Functional', function() {
expect
(
el
.
getElementsByTagName
(
'li'
)[
1
]).
toHaveTheTextContent
(
'a'
);
expect
(
el
.
getElementsByTagName
(
'li'
)[
2
]).
toHaveTheTextContent
(
'b'
);
expect
(
el
.
getElementsByTagName
(
'li'
)[
3
]).
toHaveTheTextContent
(
'last'
);
})
*/
})
});
});
...
...
Please
register
or
sign in
to post a comment