We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
jonasgeiler
Learn more about funding links in repositories.
Report abuse
1 parent 5d3877b commit b317aa6Copy full SHA for b317aa6
tests/test.js
@@ -6,5 +6,7 @@ import { expect, test } from '@playwright/test';
6
7
test('index page has expected text from readme', async ({ page }) => {
8
await page.goto('/');
9
- await expect(page.getByText('A tiny but mighty list virtualization library, with zero dependencies 💪')).toBeVisible();
+ await expect(
10
+ page.getByText('A tiny but mighty list virtualization library, with zero dependencies 💪')
11
+ ).toBeVisible();
12
});
0 commit comments