Temporary disable realmjs target on CI (#895)

* Temporary disable realmjs target on CI

It's broken because it doesn't support the node-fetch module. Let's disable it for now.

* Temporarily disable Android tests

They need an Object Server to talk to on CI

* Disable test assertion
This commit is contained in:
Yavor Georgiev 2017-03-07 17:41:19 +01:00 committed by GitHub
parent 9b1b550d75
commit b93cfaf909
2 changed files with 8 additions and 6 deletions

10
Jenkinsfile vendored
View File

@ -66,15 +66,15 @@ stage('build') {
linux_test_runners: doDockerBuild('test-runners'),
macos_node_debug: doMacBuild('node Debug'),
macos_node_release: doMacBuild('node Release'),
macos_realmjs_debug: doMacBuild('realmjs Debug'),
macos_realmjs_release: doMacBuild('realmjs Release'),
//macos_realmjs_debug: doMacBuild('realmjs Debug'),
//macos_realmjs_release: doMacBuild('realmjs Release'),
macos_react_tests_debug: doReactBuild('react-tests Debug'),
macos_react_tests_release: doReactBuild('react-tests Release'),
macos_react_example_debug: doMacBuild('react-example Debug'),
macos_react_example_release: doMacBuild('react-example Release'),
android_react_tests: doAndroidBuild('react-tests-android', {
junit 'tests/react-test-app/tests.xml'
})
//android_react_tests: doAndroidBuild('react-tests-android', {
// junit 'tests/react-test-app/tests.xml'
//})
)
}

View File

@ -65,6 +65,7 @@ module.exports = {
TestCase.assertUndefined(session.url);
TestCase.assertEqual(session.state, 'active');
/* disable until the sporadic failures are resolved
// give the session enough time to refresh its access token and bind itself
// TODO: Use an event to discover when the session is bound
let timeout = 4000;
@ -72,6 +73,7 @@ module.exports = {
return wait(timeout).then(() => {
TestCase.assertEqual(session.url, `realm://localhost:9080/${user.identity}/myrealm`);
});
*/
});
},
@ -96,4 +98,4 @@ module.exports = {
});
});
}
}
}