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:
Miroslav Bajtoš 2014-08-18 14:49:02 +02:00
parent 93bfc3a63a
commit 34de593202
1 changed files with 3 additions and 0 deletions

View File

@ -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,