On a jsdom document:
document = require('jsdom').jsdom("<html><head></head><body></body></html>");
window = document.createWindow();
Changing its hash:
document.location.href = '#bang';
doesn't trigger any 'hashchange'
event on window
Does anyone aware of a workaround for this?
Thank you