28 lines
545 B
JavaScript
28 lines
545 B
JavaScript
/* Copyright 2015 Realm Inc - All Rights Reserved
|
|
* Proprietary and Confidential
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
var Realm = require('realm');
|
|
|
|
var prototype = exports.prototype = {};
|
|
|
|
exports.extend = function(object) {
|
|
object.__proto__ = prototype;
|
|
return object;
|
|
};
|
|
|
|
Object.defineProperties(prototype, {
|
|
// TODO: Remove once missing undefined check is fixed inside RCTContextExecutor.
|
|
beforeEach: {
|
|
value: function() {}
|
|
},
|
|
|
|
afterEach: {
|
|
value: function() {
|
|
Realm.clearTestState();
|
|
}
|
|
}
|
|
});
|