htmx/www/v/0.0.1/test/events.js
2020-05-02 16:25:29 -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
});
});