We might be running in a node process without global.testAdminUserInfo

This commit is contained in:
Kræn Hansen 2017-08-14 14:12:49 +02:00
parent 97800e35b1
commit f958052c1b
1 changed files with 4 additions and 13 deletions

View File

@ -89,7 +89,7 @@ function callbackTest(requestFunc, callback) {
}
module.exports = {
testLogout() {
var username = uuid();
return callbackTest((callback) => Realm.Sync.User.register('http://localhost:9080', username, 'password', callback), (error, user) => {
@ -132,7 +132,7 @@ module.exports = {
TestCase.assertUndefined(user);
});
});
},
},
testRegisterMissingUsername() {
return new Promise((resolve, _reject) => {
@ -298,13 +298,9 @@ module.exports = {
testRetrieveAccount() {
return new Promise((resolve, reject) => {
if (!isNodeProcess) {
if (!isNodeProcess || !global.testAdminUserInfo) {
resolve();
}
if (!global.testAdminUserInfo) {
reject("Test requires an admin user");
}
Realm.Sync.User.login('http://localhost:9080', global.testAdminUserInfo.username, global.testAdminUserInfo.password, (error, user) => {
if (error) {
@ -338,14 +334,10 @@ module.exports = {
testRetrieveNotExistingAccount() {
return new Promise((resolve, reject) => {
if (!isNodeProcess) {
if (!isNodeProcess || !global.testAdminUserInfo) {
resolve();
}
if (!global.testAdminUserInfo) {
reject("Test requires an admin user");
}
Realm.Sync.User.login('http://localhost:9080', global.testAdminUserInfo.username, global.testAdminUserInfo.password, (error, user) => {
if (error) {
reject(error);
@ -427,4 +419,3 @@ module.exports = {
}, */
};