Fix spacing errors (#7484)

This commit is contained in:
J. Ryan Stinnett 2022-01-10 12:57:20 +00:00 committed by GitHub
parent 8f60d8d2c7
commit 6199c337ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
26 changed files with 74 additions and 46 deletions

View file

@ -21,4 +21,4 @@ if (idx !== -1) {
const value = process.argv[idx + 1];
hasAppUrl = !!value;
}
process.stdout.write(hasAppUrl ? "1" : "0" );
process.stdout.write(hasAppUrl ? "1" : "0");

View file

@ -114,7 +114,7 @@ export class ElementSession {
};
}
public async printElements(label: string, elements: puppeteer.ElementHandle[] ): Promise<void> {
public async printElements(label: string, elements: puppeteer.ElementHandle[]): Promise<void> {
console.log(label, await Promise.all(elements.map(this.getOuterHTML)));
}