Update deps.

This commit is contained in:
Lars Jung 2016-07-21 13:44:31 +02:00
parent 2008d0755c
commit 9b88cdeb9b
7 changed files with 12 additions and 18 deletions

View file

@ -1,10 +1,6 @@
const {test, assert} = require('scar');
test('window is global object', () => {
assert.equal(typeof global, 'object');
assert.equal(global, global.window);
});
test('document is global object', () => {
assert.equal(typeof global.document, 'object');
assert.ok(global.window);
assert.equal(global.window, global.window.window);
});