This commit is contained in:
Lars Jung 2015-04-28 01:04:51 +02:00
parent cb5c197994
commit 594653a753
2 changed files with 61 additions and 55 deletions

View file

@ -9,6 +9,12 @@ describe('premisses', function () {
assert.strictEqual(window, window.window);
});
it('document is global object', function () {
assert.isObject(document);
assert.strictEqual(document, window.document);
});
it('jQuery and $ are global objects', function () {
assert.isFunction(jQuery);