diff --git a/tests/clipboard.spec.ts b/tests/clipboard.spec.ts index 0666739..4f8b412 100644 --- a/tests/clipboard.spec.ts +++ b/tests/clipboard.spec.ts @@ -23,7 +23,7 @@ test.describe('PlaywrightClipboard', () => { test('should perform basic copy/paste operations', async ({ page }): Promise => { const clipboard = new PlaywrightClipboard(page); const initialText = 'Hello World'; - + // Set initial text in source await page.fill('#source', initialText); expect(await page.inputValue('#source')).toBe(initialText);