Update tests.

This commit is contained in:
Lars Jung
2016-07-02 02:40:34 +02:00
parent babb952485
commit 5bbc88b8e2
4 changed files with 44 additions and 33 deletions

View File

@@ -8,14 +8,3 @@ test('window is global object', () => {
test('document is global object', () => {
assert.equal(typeof global.document, 'object');
});
test('jQuery and $ are global functions', () => {
assert.equal(typeof global.jQuery, 'function');
assert.equal(global.jQuery.fn.jquery, '2.2.4');
assert.equal(global.jQuery, global.$);
});
test('_ is global function', () => {
assert.equal(typeof global._, 'function');
assert.equal(global._.VERSION, '4.13.1');
});