Skip to content

Commit

Permalink
apply breaking change to the tests
Browse files Browse the repository at this point in the history
  • Loading branch information
osoykan committed Sep 4, 2024
1 parent 6079a9e commit 0a4e427
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ class Setup : AbstractProjectConfig() {
password = "Password12!",
container = MssqlContainerOptions {
dockerImageName = "mcr.microsoft.com/mssql/server:2017-latest"
},
configureExposedConfiguration = { _ ->
listOf()
}
).migrations {
register<InitialMigration>()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,12 @@ class Setup : AbstractProjectConfig() {
TestSystem()
.with {
postgresql {
PostgresqlOptions(databaseName = "testing").migrations {
PostgresqlOptions(
databaseName = "testing",
configureExposedConfiguration = { _ ->
listOf()
}
).migrations {
register<InitialMigration>()
}
}
Expand Down

0 comments on commit 0a4e427

Please sign in to comment.