We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5127989 commit 4a06092Copy full SHA for 4a06092
docker-controller-scala-mysql/src/test/scala/com/github/j5ik2o/dockerController/MySQLControllerSpec.scala
@@ -40,6 +40,11 @@ class MySQLControllerSpec extends AnyFreeSpec with DockerControllerSpecSupport w
40
)
41
42
43
+
44
+ override protected def afterStartContainers(): Unit = {
45
+ val flywayContext = createFlywayContext(FlywayConfig(Seq("flyway")))
46
+ flywayContext.flyway.migrate()
47
+ }
48
49
"MySQLController" - {
50
"run" in {
@@ -73,9 +78,4 @@ class MySQLControllerSpec extends AnyFreeSpec with DockerControllerSpecSupport w
73
78
}
74
79
75
80
76
- override protected def afterStartContainers(): Unit = {
77
- val flywayContext = createFlywayContext(FlywayConfig(Seq("flyway")))
- flywayContext.flyway.migrate()
- }
-
81
0 commit comments