Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Commit

Permalink
Update index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Mobius1 committed Jun 24, 2017
1 parent 636e2f9 commit 67c4614
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@
assert.ok( Object.prototype.toString.call(selector) === '[object Object]', "Passed!" );
});
QUnit.test( "selected", function( assert ) {
assert.ok( selector.el.options[1].selected === true && selector.el.options[4].selected === true, "Passed!" );
assert.ok( selector.options[1].selected === true && selector.options[4].selected === true, "Passed!" );
});
QUnit.test( "not-selected", function( assert ) {
assert.ok( selector.el.options[0].selected === false && selector.el.options[2].selected === false, "Passed!" );
assert.ok( selector.options[0].selected === false && selector.options[2].selected === false, "Passed!" );
});
QUnit.test( "select-one", function( assert ) {
assert.ok( selector.originalType === "select-one", "Passed!" );
Expand Down

0 comments on commit 67c4614

Please sign in to comment.