assertSee method

TestResponse assertSee(
  1. String text
)

Implementation

TestResponse assertSee(String text) => _check(
  body.contains(text),
  'Expected body to contain [$text]. Body: $body',
);