mirror of
https://github.com/bigskysoftware/htmx.git
synced 2025-09-29 22:11:22 +00:00
16 lines
322 B
JavaScript
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
|
|
});
|
|
});
|
|
|