From 42a091befc1754288cc3ea10a64cf91dc807520a Mon Sep 17 00:00:00 2001 From: vrknetha Date: Sun, 8 Dec 2024 01:07:48 +0530 Subject: [PATCH] eslint fix --- tests/clipboard.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);