You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: use functions with receiver in hasPactWith()
This gives a more idiomatic Kotlin DSL experience. Instead of
hasPactWith("consumer") { c -> c.pactSource = "foo" }
you will write:
hasPactWith("consumer") { pactSource = "foo" }
0 commit comments