mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-01 13:47:06 +01:00
9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
if (typeof process === 'object') {
|
|
// Initialize node environment
|
|
global.expect = require('chai').expect
|
|
require('mocha-jsdom')()
|
|
} else {
|
|
window.expect = window.chai.expect
|
|
window.require = function () { /* noop */ }
|
|
}
|