Update test desc.

This commit is contained in:
Lars Jung 2015-06-14 16:04:11 +02:00
parent 063049ec8e
commit 6c7e3e8c5d

View file

@ -15,7 +15,7 @@ describe('premisses', function () {
assert.strictEqual(document, window.document);
});
it('jQuery and $ are global objects', function () {
it('jQuery and $ are global functions', function () {
assert.isFunction(jQuery);
assert.strictEqual(jQuery, window.jQuery);
@ -25,7 +25,7 @@ describe('premisses', function () {
assert.strictEqual($, window.$);
});
it('_ is global object', function () {
it('_ is global function', function () {
assert.isFunction(_);
assert.strictEqual(_, window._);