expectNoText method

void expectNoText(
  1. String text
)

Implementation

void expectNoText(String text) {
  if (isTextVisible(text)) {
    throw EnsembleTestFailure('Expected text "$text" to not be visible.');
  }
}