what’s the proper way to chain assertions on unrel...
# strikt
e
what’s the proper way to chain assertions on unrelated subjects?
Copy code
expect {
    expectThat(foo) {
        // ...
    }
    expectThat(bar) {
        // ...
    }
}
c
Copy code
expect {
  that(foo)…
  that(bar)..
}
👍 1