htmx/test/core/events.js
2020-05-13 09:12:31 -07:00

16 lines
323 B
JavaScript

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