From 9a3261b31d2e31a6027c49d1e46e534e44b3905e Mon Sep 17 00:00:00 2001 From: David Hunt Date: Tue, 17 Dec 2024 14:10:21 +1300 Subject: [PATCH] chore: remove console.log from previous development --- packages/playwright/src/PlaywrightWorld.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/playwright/src/PlaywrightWorld.ts b/packages/playwright/src/PlaywrightWorld.ts index 4091fed..f54a87b 100644 --- a/packages/playwright/src/PlaywrightWorld.ts +++ b/packages/playwright/src/PlaywrightWorld.ts @@ -328,7 +328,6 @@ export class PlaywrightWorld extends QuickPickleWorld { let explodedTags = this.info.explodedIdx ? `_(${this.info.tags.join(',')})` : '' let path = opts?.name ? this.sanitizeFilepath(`${this.projectRoot}/${this.worldConfig.screenshotDir}/${opts.name}${explodedTags}.png`) : this.fullScreenshotPath let locator = opts?.locator ?? this.page - console.log('FWAH') return await locator.screenshot({ path, ...this.worldConfig.screenshotOpts }) }