describe("hx-get attribute", function() { beforeEach(function () { this.server = makeServer(); clearWorkArea(); }); afterEach(function () { this.server.restore(); clearWorkArea(); }); it('issues a GET request on click and swaps content', function () { this.server.respondWith("GET", "/test", "Clicked!"); var btn = make('') btn.click(); this.server.respond(); btn.innerHTML.should.equal("Clicked!"); }); it('GET does not include surrounding data by default', function () { this.server.respondWith("GET", "/test", function (xhr) { xhr.respond(200, {}, "Clicked!"); }); make('