Skip to content

Commit

Permalink
test(model): fix issue with ts
Browse files Browse the repository at this point in the history
  • Loading branch information
matteoterrinoni committed May 17, 2018
1 parent 538a8f1 commit 8236631
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/model.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ describe('Method over lists', () => {
expect(items.filter(i => Given.item(i).checked()).length).toBe(items.length)
expect(items.filter(i => Given.item(i).visible()).length).toBe(items.length)

Given.items(items).clean().result
Given.items(items).clean()
expect(items.filter(i => i.checked === undefined).length).toBe(items.length)
expect(items.filter(i => i.visible === undefined).length).toBe(items.length)
})
Expand Down

0 comments on commit 8236631

Please sign in to comment.