2016-11-09 20:50:19 +00:00
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright 2016 Realm Inc.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/* eslint-env es6, node */
|
|
|
|
/* eslint-disable no-console */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const Realm = require('realm');
|
|
|
|
|
|
|
|
const userTests = require('../js/user-tests');
|
|
|
|
describe('SyncTests', () => {
|
2016-11-10 18:34:39 +00:00
|
|
|
jasmine.DEFAULT_TIMEOUT_INTERVAL = 30000;
|
2016-11-09 20:50:19 +00:00
|
|
|
beforeEach(() => Realm.clearTestState());
|
2016-11-10 20:53:36 +00:00
|
|
|
afterEach(() => {
|
|
|
|
Realm.clearTestState();
|
2016-11-10 21:55:22 +00:00
|
|
|
let users = Realm.Sync.User.all;
|
|
|
|
Object.keys(users).forEach((identity) => {
|
|
|
|
users[identity].logout();
|
2016-11-10 20:53:36 +00:00
|
|
|
});
|
|
|
|
});
|
2016-11-09 20:50:19 +00:00
|
|
|
|
|
|
|
for (const testName in userTests) {
|
2016-11-11 02:06:06 +00:00
|
|
|
it(testName, (done) => {
|
|
|
|
userTests[testName]()
|
|
|
|
.catch((e) => fail(e))
|
|
|
|
.then(done);
|
|
|
|
});
|
2016-11-09 20:50:19 +00:00
|
|
|
}
|
|
|
|
});
|