You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 30, 2018. It is now read-only.
Would be great if you could give an example of how to test this. Currently using Jasmine and have this, but the sleeps slow down our tests.
it('should update the thing on select', function () {
var newText = 'Option Text';
input('authorInput').enter('option text');
sleep(1);
element('ul.ui-autocomplete li:nth-child(1) a').click();
sleep(1);
expect(element('#thing .value').text()).toBe(newText);
});
The text was updated successfully, but these errors were encountered: