Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

BDD Validation fails

Angelika Ehlers edited this page Sep 27, 2017 · 15 revisions

Issue:

BDD validation process fails with "Cannot find jquery"

Verification:

oc rsh <jenkins-pipeline-pod>

run the BDD test locally (gradlew --stacktrace --debug phantomJSTest

Solution:

If verification step works swith the BDD stage to run on master node.

Example:

node('master') { stage('validation') { dir('navunit') { sh './gradlew --debug --stacktrace phantomJsTest' } } }

Clone this wiki locally