parent property

TestContext? get parent

If the current test is a step of another test, the parent test context will be set here.

Implementation

_i4.TestContext? get parent => _i3.getProperty(
      this,
      'parent',
    );
set parent (TestContext? value)

Implementation

set parent(_i4.TestContext? value) {
  _i3.setProperty(
    this,
    'parent',
    value ?? _i6.undefined,
  );
}