Skip to content

Commit

Permalink
SHIBUI-2264
Browse files Browse the repository at this point in the history
Added a few gradle things back in to the build that are required for the
Selenium tests to execute.
  • Loading branch information
Bill Smith committed Jun 16, 2022
1 parent e18aa9a commit bc31492
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion backend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,9 @@ dependencies {
integrationTestCompile configurations.compile
integrationTestCompile 'com.saucelabs:sebuilder-interpreter:1.0.6'
integrationTestCompile 'jp.vmi:selenese-runner-java:3.20.0'
integrationTestCompile platform("org.spockframework:spock-bom:2.1-groovy-3.0")
integrationTestCompile "org.spockframework:spock-core"
integrationTestCompile "org.spockframework:spock-spring"
integrationTestCompile 'org.springframework.boot:spring-boot-starter-test:2.6.7'
integrationTestCompile 'org.springframework.security:spring-security-test:5.6.3'

Expand Down Expand Up @@ -237,6 +240,7 @@ task copyUI(type: Copy) {
}

task integrationTest(type: Test) {
useJUnitPlatform()
group = 'verification'
description = 'Run various integration tests'
dependsOn 'copyUI'
Expand Down Expand Up @@ -373,4 +377,4 @@ dockerRun {
daemonize true
command '--spring.profiles.include=very-dangerous,dev', '--shibui.default-password={noop}password'
clean true
}
}

0 comments on commit bc31492

Please sign in to comment.