fix IncompatibleRealmSynced tests

This commit is contained in:
blagoev 2017-09-30 16:43:40 +03:00
parent 6062a5ab06
commit 0b439d6c79
1 changed files with 12 additions and 0 deletions

View File

@ -476,6 +476,10 @@ module.exports = {
if (isNodeProccess) { if (isNodeProccess) {
realm = copyFileToTempDir(path.join(process.cwd(), "data", realm)); realm = copyFileToTempDir(path.join(process.cwd(), "data", realm));
} }
else {
//copy the bundled RN realm files for the test
Realm.copyBundledRealmFiles();
}
return Realm.Sync.User.register('http://localhost:9080', uuid(), 'password').then(user => { return Realm.Sync.User.register('http://localhost:9080', uuid(), 'password').then(user => {
return new Promise((resolve, _reject) => { return new Promise((resolve, _reject) => {
@ -510,6 +514,10 @@ module.exports = {
if (isNodeProccess) { if (isNodeProccess) {
realm = copyFileToTempDir(path.join(process.cwd(), "data", realm)); realm = copyFileToTempDir(path.join(process.cwd(), "data", realm));
} }
else {
//copy the bundled RN realm files for the test
Realm.copyBundledRealmFiles();
}
return Realm.Sync.User.register('http://localhost:9080', uuid(), 'password').then(user => { return Realm.Sync.User.register('http://localhost:9080', uuid(), 'password').then(user => {
return new Promise((resolve, _reject) => { return new Promise((resolve, _reject) => {
@ -546,6 +554,10 @@ module.exports = {
if (isNodeProccess) { if (isNodeProccess) {
realm = copyFileToTempDir(path.join(process.cwd(), "data", realm)); realm = copyFileToTempDir(path.join(process.cwd(), "data", realm));
} }
else {
//copy the bundled RN realm files for the test
Realm.copyBundledRealmFiles();
}
return Realm.Sync.User.register('http://localhost:9080', uuid(), 'password').then(user => { return Realm.Sync.User.register('http://localhost:9080', uuid(), 'password').then(user => {
return new Promise((resolve, _reject) => { return new Promise((resolve, _reject) => {