Skip to content

Commit 5d6dfbd

Browse files
committed
remove logger output
1 parent ce6e345 commit 5d6dfbd

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

tests/fixtures.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ export async function contains(editorLocator: Locator, expectedText: string): Pr
6262
if (!content || !content.includes(expectedText)) {
6363
throw new Error(`Expected text "${expectedText}" not found in editor content: "${content || ''}"`);
6464
}
65-
66-
console.log(`Verified: Editor content contains the text "${expectedText}".`);
6765
}
6866

6967
/**
@@ -79,6 +77,4 @@ export async function equals(editorLocator: Locator, expectedText: string): Prom
7977
if (content !== expectedText) {
8078
throw new Error(`Editor content does not match. Expected: "${expectedText}", Found: "${content || ''}"`);
8179
}
82-
83-
console.log(`Verified: Editor content equals the expected text "${expectedText}".`);
8480
}

0 commit comments

Comments
 (0)