realm-js/tests/spec/helpers/mock_realm.js
Radu Tutueanu d7c44fa7e9 Use mockery in tests to setup the realm module path(#727)
* Use mockery to set up the realm module path

* Use the right path

* Add mockery to devDependencies

* Remove unnecessary symbolic link
2016-12-09 09:05:15 +01:00

17 lines
368 B
JavaScript

'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
});
mockery.registerSubstitute('realm', REALM_MODULE_PATH);
}