remove uneeded change

This commit is contained in:
Mark Stewart 2024-10-07 22:30:15 +01:00
parent 8f89a2b5a5
commit 7e65632ba3
No known key found for this signature in database
GPG key ID: 8F4C93FFAE542241

View file

@ -34,7 +34,7 @@ class ListReporter extends BaseReporter {
private _needNewLine = false; private _needNewLine = false;
private _printSteps: boolean; private _printSteps: boolean;
constructor(options: { printSteps?: boolean;} = {}) { constructor(options: { printSteps?: boolean } = {}) {
super(); super();
this._printSteps = getAsBooleanFromENV('PLAYWRIGHT_LIST_PRINT_STEPS', options.printSteps); this._printSteps = getAsBooleanFromENV('PLAYWRIGHT_LIST_PRINT_STEPS', options.printSteps);
} }