htmx/test/events.js
2020-05-01 04:50:16 -07:00

16 lines
322 B
JavaScript

describe("HTMx Events", function() {
beforeEach(function () {
this.server = makeServer();
clearWorkArea();
});
afterEach(function () {
this.server.restore();
clearWorkArea();
});
it("writes the tests for events", function () {
//TODO event testing
});
});