Skip to content

Commit

Permalink
SHIBUI-2264
Browse files Browse the repository at this point in the history
correcting settings for selenium tests
  • Loading branch information
chasegawa committed Jun 16, 2022
1 parent d975e99 commit 4fc1a51
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,9 @@ dependencies {
integrationTestCompile 'jp.vmi:selenese-runner-java:3.20.0'
integrationTestCompile "org.springframework.boot:spring-boot-starter-test:${project.'springbootVersion'}"
integrationTestCompile "org.springframework.security:spring-security-test:${project.'springSecurityVersion'}"
integrationTestCompile platform("org.spockframework:spock-bom:2.1-groovy-3.0")
integrationTestCompile "org.spockframework:spock-core"
integrationTestCompile "org.spockframework:spock-spring"

// CSV file support
compile 'com.opencsv:opencsv:4.4', {
Expand Down Expand Up @@ -240,6 +243,7 @@ task copyUI(type: Copy) {
}

task integrationTest(type: Test) {
useJUnitPlatform()
group = 'verification'
description = 'Run various integration tests'
dependsOn 'copyUI'
Expand All @@ -251,6 +255,7 @@ task integrationTest(type: Test) {
}

task enversTest(type: Test) {
useJUnitPlatform()
group = 'verification'
description = 'Run tests pertaing to envers versioning engine'
testClassesDirs = sourceSets.enversTest.output.classesDirs
Expand Down

0 comments on commit 4fc1a51

Please sign in to comment.