1
0
mirror of https://github.com/chubin/cheat.sh.git synced 2026-06-20 13:16:44 +02:00
Files
cheat.sh/share/static/awesomplete-gh-pages/test/events/inputSpec.js
T
2017-05-08 21:17:29 +00:00

13 lines
312 B
JavaScript

describe("input event", function () {
$.fixture("plain");
subject(function () { return new Awesomplete("#plain") });
it("rebuilds the list", function () {
spyOn(Awesomplete.prototype, "evaluate");
$.type(this.subject.input, "ite");
expect(Awesomplete.prototype.evaluate).toHaveBeenCalled();
});
});