mirror of
https://github.com/fastmail/Squire.git
synced 2024-12-22 23:40:35 -05:00
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
|
/*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;
|
||
|
});
|
||
|
});
|