0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 23:40:35 -05:00
Squire/test/squire.spec.js

12 lines
293 B
JavaScript
Raw Normal View History

2015-06-15 09:42:48 -05:00
/*global expect, describe, afterEach, beforeEach, it */
describe('Squire RTE', function () {
var editor;
beforeEach(function () {
editor = new Squire(document.getElementById('testFrame').contentDocument);
});
afterEach(function () {
editor = null;
});
});