diff --git a/test/scoping.js b/test/scoping.js index 557c54a..2a3d255 100644 --- a/test/scoping.js +++ b/test/scoping.js @@ -12,6 +12,7 @@ describe('scoping', function () { } Module.prototype.method = function() { + Module(); return this.foo; }; @@ -21,4 +22,4 @@ describe('scoping', function () { expect(mod.req()).toBe('bar'); }); -}); \ No newline at end of file +});