sanitizeExit property
bool?
get
sanitizeExit
Ensure the test step does not prematurely cause the process to exit, for example via a call to {@linkcode Deno.exit}.
Defaults to the parent test or step's value.
Implementation
_i2.bool? get sanitizeExit => _i3.getProperty(
this,
'sanitizeExit',
);
set
sanitizeExit
(bool? value)
Implementation
set sanitizeExit(_i2.bool? value) {
_i3.setProperty(
this,
'sanitizeExit',
value ?? _i6.undefined,
);
}