issue function

Future<void> issue(
  1. String value, {
  2. String? name,
})

Adds an issue link to the current test.

Implementation

Future<void> issue(String value, {String? name}) =>
    link(value, name: name, type: 'issue');