Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions api-catalog-ui/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ task runTests(type: NpmTask) {
args = ['run', 'test']
}

task runE2ETests(type: NpmTask, dependsOn: ':integration-tests:startUpCheck') {
group = 'integration tests'
description = "End to End Tests depending on the catalog ui"

args = ['run', 'cy:e2e:zowe-ci']
}


task bundle(type: NpmTask) {
inputs.dir('frontend/src').withPathSensitivity(PathSensitivity.RELATIVE)
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ task runIntegrationTestInstances(dependsOn: buildCore) {
}
}

task runCITests(dependsOn: [":integration-tests:runCITests", "runIntegrationTestInstances"]) {
task runCITests(dependsOn: [":integration-tests:runCITests", ":api-catalog-ui:runE2ETests", "runIntegrationTestInstances"]) {
description "Run Integration Test Without MF Dependencies"
group "Integration tests"
}
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ nodejsVersion=8.11.1
projectRoot=${project.projectDir}

org.gradle.daemon=false
org.gradle.jvmargs=-Xmx1536m
org.gradle.parallel=true
org.gradle.caching=true
# Don't push in remote cache from local environments
Expand Down