From d9121bea5e90518b1a1023bad8d85418d88e4273 Mon Sep 17 00:00:00 2001 From: "Kristen.Herum" Date: Sun, 20 Oct 2024 15:48:18 +0200 Subject: [PATCH] Switch spring datasource to flyway in test config #deploy-levende-arbeidsforhold-ansettelse Updated the application.yaml to replace the spring datasource configuration with a flyway configuration for the test environment. This change is intended to streamline database migrations during testing. --- .../src/test/resources/application.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/levende-arbeidsforhold-ansettelse/src/test/resources/application.yaml b/apps/levende-arbeidsforhold-ansettelse/src/test/resources/application.yaml index 5f0dd410aa7..1f3777c0854 100644 --- a/apps/levende-arbeidsforhold-ansettelse/src/test/resources/application.yaml +++ b/apps/levende-arbeidsforhold-ansettelse/src/test/resources/application.yaml @@ -1,6 +1,6 @@ spring: - datasource: + flyway: url: jdbc:h2:mem:testdb username: sa password: \ No newline at end of file