defineSmokeTest method

void defineSmokeTest({
  1. required AFWorkflowTestBodyExecuteDelegate body,
  2. AFScreenTestID id = AFUIScreenTestID.smoke,
  3. String? description,
  4. String? disabled,
})

Implementation

void defineSmokeTest({
  required AFWorkflowTestBodyExecuteDelegate body,
  AFScreenTestID id = AFUIScreenTestID.smoke,
  String? description,
  String? disabled
}) async {
  smokeTests.add(AFWorkflowStateTestBodyWithParam(id, description, disabled, body));
}