( function () { QUnit.module( 'mmv.logging.ViewLogger', QUnit.newMwEnvironment( { beforeEach: function () { this.clock = this.sandbox.useFakeTimers(); // since jQuery 2/3, $.now will capture a reference to Date.now // before above fake timer gets a chance to override it, so I'll // override that new behavior in order to run these tests... // @see https://github.com/sinonjs/lolex/issues/76 this.oldNow = $.now; $.now = function () { return +( new Date() ); }; }, afterEach: function () { $.now = this.oldNow; this.clock.restore(); } } ) ); QUnit.test( 'unview()', function ( assert ) { var logger = { log: function () {} }, viewLogger = new mw.mmv.logging.ViewLogger( { recordVirtualViewBeaconURI: function () {} }, {}, logger ); this.sandbox.stub( logger, 'log' ); viewLogger.unview(); assert.strictEqual( logger.log.called, false, 'action logger not called' ); viewLogger.setLastViewLogged( false ); viewLogger.unview(); assert.strictEqual( logger.log.called, false, 'action logger not called' ); viewLogger.setLastViewLogged( true ); viewLogger.unview(); assert.strictEqual( logger.log.calledOnce, true, 'action logger called' ); viewLogger.unview(); assert.strictEqual( logger.log.calledOnce, true, 'action logger not called again' ); } ); QUnit.test( 'focus and blur', function ( assert ) { var $fakeWindow = $( '