Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
solr-frontend
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
e3b61d72
authored
2016-02-08 10:23:12 -0600
by
Adam Heath
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Finish ItemCollection.remove test.
1 parent
c9fffad0
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
test/specs/Facet.js
test/specs/Facet.js
View file @
e3b61d7
...
...
@@ -71,10 +71,10 @@ define(function(require) {
expect
(
got
).
toEqual
(
wantedCheckedKeys
);
});
var
item2
=
ascItemOrder
[
2
];
it
(
'
foobar
'
,
function
()
{
console
.
log
(
JSON
.
stringify
(
items
.
models
)
);
it
(
'
remove not supported
'
,
function
()
{
expect
(
items
.
length
).
toBe
(
wantedItemOrder
.
length
);
items
.
remove
(
item2
);
console
.
log
(
item2
,
JSON
.
stringify
(
items
.
models
)
);
expect
(
items
.
length
).
toBe
(
wantedItemOrder
.
length
);
});
}
describe
(
'type[field]'
,
function
()
{
...
...
Please
register
or
sign in
to post a comment