mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
fix: Modify timeout for protractor
This commit is contained in:
parent
35b6fb1672
commit
f94a665f11
2 changed files with 3 additions and 3 deletions
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue