UNPKG

polyfill-service

Version:
13 lines (9 loc) 330 B
it('Should dispatch the hashchange event', function(done) { var listener = function(e) { expect(e.type).to.be('hashchange'); window.removeEventListener('hashchange', listener); done(); } window.addEventListener('hashchange', listener); window.location.hash = 'hashchange-test-'+Math.floor(Math.random()*1000000); });