-
Notifications
You must be signed in to change notification settings - Fork 78
Open
Labels
Description
I have keydown tests that seem to work fine in the browser with jasminerice
I am trying to get guard-jasmine working.
I need some assistance.
here is one of the tests that works in firefox and safari via jasmine rice and fails in phantomjs
it("is focused",function() {
expect($(selector).filter(':focus').size()).toBe(0)
$(selector).filter(':first').trigger('click.editable')
expect($(selector).filter(':focus').size()).toBe(1)
})Reactions are currently unavailable