Theodo-UK / theodo-good-tests

Sharing of testing philosophy and best practices with commonly used examples
40 stars 2 forks source link

Mocking global variables #56

Closed robcronin closed 4 years ago

robcronin commented 4 years ago

e.g.

Object.defineProperty(window, "location", {
    value: {
      host: "mockHost",
      origin: "https://mockHost",
    },
    writable: true,
})