Skip to content

Commit b317aa6

Browse files
committedApr 29, 2024··
style: fix formatting issues with prettier
1 parent 5d3877b commit b317aa6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎tests/test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@ import { expect, test } from '@playwright/test';
66

77
test('index page has expected text from readme', async ({ page }) => {
88
await page.goto('/');
9-
await expect(page.getByText('A tiny but mighty list virtualization library, with zero dependencies 💪')).toBeVisible();
9+
await expect(
10+
page.getByText('A tiny but mighty list virtualization library, with zero dependencies 💪')
11+
).toBeVisible();
1012
});

0 commit comments

Comments
 (0)
Please sign in to comment.