Skip to content

Commit

Permalink
eslint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vrknetha committed Dec 7, 2024
1 parent 79d8f00 commit 42a091b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/clipboard.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ test.describe('PlaywrightClipboard', () => {
test('should perform basic copy/paste operations', async ({ page }): Promise<void> => {
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);
Expand Down

0 comments on commit 42a091b

Please sign in to comment.