* Assertion function used by the above test* wrappers. Asserts that the given * select2 instance is not open. * * @param {Assert} assert * @param {Select2} select * @return {null}
(assert, select2)
| 97 | * @return {null} |
| 98 | */ |
| 99 | function assertNotOpened (assert, select2) { |
| 100 | assert.notOk(select2.isOpen(), 'The element should not be open'); |
| 101 | } |
| 102 | |
| 103 | /** |
| 104 | * ENTER, SPACE, and ALT+DOWN should all open an enabled select2 element. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…