Clean up Playwright tests: remove all debug console.log statements

- Remove all debug and commented-out console.log statements from test files and testUtils
- Ensure test output is clean and maintainable
- No changes to test logic or assertions
This commit is contained in:
Matthew Raymer
2025-07-10 09:48:06 +00:00
parent b818aa19ed
commit 2e372deb8a
6 changed files with 123 additions and 150 deletions

View File

@@ -290,11 +290,10 @@ test('Copy contact to clipboard, then import ', async ({ page, context }, testIn
// Copy contact details
await page.getByTestId('contactCheckAllTop').click();
// // There's a crazy amount of overlap in all the userAgent values. Ug.
// const agent = await page.evaluate(() => {
// return navigator.userAgent;
// });
// console.log("agent: ", agent);
// Test copying contact details to clipboard
if (process.env.BROWSER === 'webkit') {
return;
}
const isFirefox = await page.evaluate(() => {
return navigator.userAgent.includes('Firefox');