Clean code.

This commit is contained in:
Lars Jung 2015-04-24 00:51:26 +02:00
parent c73bc83f7d
commit 34525afe56
2 changed files with 3 additions and 3 deletions

View file

@ -3,9 +3,9 @@
describe('modulejs', function () {
it('is global', function () {
it('is global object', function () {
assert.isObject(modulejs);
assert.isPlainObject(modulejs);
assert.strictEqual(modulejs, window.modulejs);
});