onAfterScenario method

  1. @override
Future<void> onAfterScenario(
  1. TestConfiguration config,
  2. String scenario,
  3. Iterable<Tag> tags, {
  4. bool passed = true,
})
override

Run after a scenario has executed

Implementation

@override
Future<void> onAfterScenario(
  TestConfiguration config,
  String scenario,
  Iterable<Tag> tags, {
  bool passed = true,
}) async =>
    _invokeHooks(
      (h) => h.onAfterScenario(
        config,
        scenario,
        tags,
        passed: passed,
      ),
    );