realm-js/tests/spec/helpers/mock_realm.js

17 lines
400 B
JavaScript
Raw Normal View History

'use strict';
const mockery = require('mockery');
module.exports = function(realmModulePath) {
if (typeof REALM_MODULE_PATH !== 'undefined')
return;
global.REALM_MODULE_PATH = realmModulePath;
mockery.enable({
warnOnReplace: false,
warnOnUnregistered: false
});
2016-12-29 09:53:51 +00:00
mockery.registerSubstitute('realm', REALM_MODULE_PATH); // eslint-disable-line no-undef
}