sanitizeResources property
bool?
get
sanitizeResources
Ensure the test step does not "leak" resources - like open files or network connections - by ensuring the open resources at the start of the test match the open resources at the end of the test.
@default {true}
Implementation
_i2.bool? get sanitizeResources => _i3.getProperty(
this,
'sanitizeResources',
);
set
sanitizeResources
(bool? value)
Implementation
set sanitizeResources(_i2.bool? value) {
_i3.setProperty(
this,
'sanitizeResources',
value ?? _i6.undefined,
);
}