mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-10-02 07:21:05 +00:00
16 lines
323 B
JavaScript
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
|
|
});
|
|
});
|
|
|