UNPKG

window-mock

Version:

A light-weight window mock for Node/io.js unit-testing

14 lines (10 loc) 204 B
class WindowLocationMock { constructor() { this._test = 'Location'; this.hash = ''; this.href = ''; this.pathname = ''; this.origin = ''; } } export default WindowLocationMock;