summaryrefslogtreecommitdiff
path: root/src/integrationTest
diff options
context:
space:
mode:
authorPaul-Christian Volkmer2026-01-08 16:22:57 +0100
committerGitHub2026-01-08 15:22:57 +0000
commited4b068127530346345ed16b2e79b33bc5b03d57 (patch)
tree173d36e24bb04ea61a2a960dd765e1c745dd6f6b /src/integrationTest
parent7045318e87ecc853c000e9e11c955bc6298f2d56 (diff)
build: remove webjars and use custom build (#238)
Diffstat (limited to 'src/integrationTest')
-rw-r--r--src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt b/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt
index e329b30..b4be1ff 100644
--- a/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt
+++ b/src/integrationTest/kotlin/dev/dnpm/etl/processor/web/HomeControllerTest.kt
@@ -79,6 +79,7 @@ class HomeControllerTest {
fun setup(@Autowired mockMvc: MockMvc, @Autowired requestService: RequestService) {
this.mockMvc = mockMvc
this.webClient = MockMvcWebClientBuilder.mockMvcSetup(mockMvc).build()
+ this.webClient.options.isJavaScriptEnabled = false
whenever(requestService.findAll(any<Pageable>())).thenReturn(Page.empty())
}