diff options
Diffstat (limited to 'test/api/openSpec.js')
-rw-r--r-- | test/api/openSpec.js | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/test/api/openSpec.js b/test/api/openSpec.js new file mode 100644 index 0000000..848b960 --- /dev/null +++ b/test/api/openSpec.js @@ -0,0 +1,50 @@ +describe("awesomplete.open", function () { + + $.fixture("plain"); + + subject(function () { return new Awesomplete("#plain", this.options) }); + + it("opens completer", function () { + this.subject.open(); + expect(this.subject.ul.hasAttribute("hidden")).toBe(false); + }); + + // Exposes this bug https://github.com/LeaVerou/awesomplete/pull/16740 + // FIXME better fix is probably required as discussed in PR above + xit("fills in the list on creation", function () { + $("#plain").value = "ite"; + this.options = { list: "item1, item2" }; + this.subject.open(); + + expect(this.subject.ul.children.length).toBe(2); + }); + + it("fires awesomplete-open event", function () { + var handler = $.spyOnEvent(this.subject.input, "awesomplete-open"); + this.subject.open(); + + expect(handler).toHaveBeenCalled(); + }); + + describe("with autoFirst: true", function () { + def("options", function () { return { autoFirst: true } }); + + it("automatically selects first item", function () { + spyOn(this.subject, "goto"); + this.subject.open(); + + expect(this.subject.goto).toHaveBeenCalledWith(0); + }); + }); + + describe("with autoFirst: false", function () { + def("options", function () { return { autoFirst: false } }); + + it("does not select any item", function () { + this.subject.open(); + + expect(this.subject.selected).toBe(false); + expect(this.subject.index).toBe(-1); + }); + }); +}); |