fix: Modify timeout for protractor

This commit is contained in:
1ambda 2017-07-11 11:21:45 +09:00
parent 35b6fb1672
commit f94a665f11
2 changed files with 3 additions and 3 deletions

View file

@ -48,7 +48,7 @@ matrix:
# Run e2e tests (in zeppelin-web)
- jdk: "oraclejdk7"
env: WEB_E2E="true" SCALA_VER="2.11" SPARK_VER="2.1.0" HADOOP_VER="2.6" PROFILE="-Pweb-ci -Pscala-2.11" BUILD_FLAG="package -DskipTests -DskipRat" TEST_FLAG="verify -DskipRat" MODULES="-pl ${INTERPRETERS}" TEST_MODULES="-pl zeppelin-web" TEST_PROJECTS="-Pweb-e2e -X"
env: WEB_E2E="true" SCALA_VER="2.11" SPARK_VER="2.1.0" HADOOP_VER="2.6" PROFILE="-Pweb-ci -Pscala-2.11" BUILD_FLAG="package -DskipTests -DskipRat" TEST_FLAG="verify -DskipRat" MODULES="-pl ${INTERPRETERS}" TEST_MODULES="-pl zeppelin-web" TEST_PROJECTS="-Pweb-e2e"
# Test core modules
# Several tests were excluded from this configuration due to the following issues:

View file

@ -23,8 +23,8 @@ exports.config = {
onPrepare: function() {
// waiting for angular app is loaded
browser.ignoreSynchronization = true;
browser.manage().timeouts().pageLoadTimeout(40000);
browser.manage().timeouts().implicitlyWait(25000);
browser.manage().timeouts().pageLoadTimeout(80000);
browser.manage().timeouts().implicitlyWait(50000);
// add reporter to display executed tests in console
var SpecReporter = require('jasmine-spec-reporter').SpecReporter;