fix: remove unneeded whitespace

This commit is contained in:
Stevan Freeborn 2024-02-26 23:09:40 -06:00
parent 73d29acd76
commit e4a1c18a62

View file

@ -54,7 +54,6 @@ export class TestTracing {
if (this._options?.mode === 'on-first-retry' && this._testInfo.retry === 1) return true; if (this._options?.mode === 'on-first-retry' && this._testInfo.retry === 1) return true;
if (this._options?.mode === 'on-all-retries' && this._testInfo.retry > 0) return true; if (this._options?.mode === 'on-all-retries' && this._testInfo.retry > 0) return true;
if (this._options?.mode === 'retain-on-first-failure' && this._testInfo.retry === 0) return true; if (this._options?.mode === 'retain-on-first-failure' && this._testInfo.retry === 0) return true;
return false; return false;
} }