mirror of
https://github.com/chubin/cheat.sh.git
synced 2026-06-20 13:16:44 +02:00
13 lines
312 B
JavaScript
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();
|
|
});
|
|
});
|