test: add `global.navigator` for browser tests
The debug module uses `navigator.userAgent` to detect whether the browser support colors in console logs.
This commit is contained in:
parent
93bfc3a63a
commit
34de593202
|
@ -70,6 +70,9 @@ function createBrowserLikeContext() {
|
|||
// used by `debug` module
|
||||
document: { documentElement: { style: {} } },
|
||||
|
||||
// used by `debug` module
|
||||
navigator: { userAgent: 'sandbox' },
|
||||
|
||||
// used by crypto-browserify & friends
|
||||
Int32Array: Int32Array,
|
||||
DataView: DataView,
|
||||
|
|
Loading…
Reference in New Issue