Skip to content

Commit f94a665

Browse files
committed
fix: Modify timeout for protractor
1 parent 35b6fb1 commit f94a665

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ matrix:
4848

4949
# Run e2e tests (in zeppelin-web)
5050
- jdk: "oraclejdk7"
51-
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"
51+
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"
5252

5353
# Test core modules
5454
# Several tests were excluded from this configuration due to the following issues:

zeppelin-web/protractor.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ exports.config = {
2323
onPrepare: function() {
2424
// waiting for angular app is loaded
2525
browser.ignoreSynchronization = true;
26-
browser.manage().timeouts().pageLoadTimeout(40000);
27-
browser.manage().timeouts().implicitlyWait(25000);
26+
browser.manage().timeouts().pageLoadTimeout(80000);
27+
browser.manage().timeouts().implicitlyWait(50000);
2828

2929
// add reporter to display executed tests in console
3030
var SpecReporter = require('jasmine-spec-reporter').SpecReporter;

0 commit comments

Comments
 (0)