From bc314927fef045e4b94b73ce9f8a6499d30ca5de Mon Sep 17 00:00:00 2001 From: Bill Smith Date: Thu, 16 Jun 2022 10:56:27 -0400 Subject: [PATCH] SHIBUI-2264 Added a few gradle things back in to the build that are required for the Selenium tests to execute. --- backend/build.gradle | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/backend/build.gradle b/backend/build.gradle index 53ddcae09..cbf50ed9b 100644 --- a/backend/build.gradle +++ b/backend/build.gradle @@ -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' @@ -237,6 +240,7 @@ task copyUI(type: Copy) { } task integrationTest(type: Test) { + useJUnitPlatform() group = 'verification' description = 'Run various integration tests' dependsOn 'copyUI' @@ -373,4 +377,4 @@ dockerRun { daemonize true command '--spring.profiles.include=very-dangerous,dev', '--shibui.default-password={noop}password' clean true -} \ No newline at end of file +}