diff --git a/tests/e2e/init.spec.js b/tests/e2e/init.spec.js deleted file mode 100644 index 5a01a76..0000000 --- a/tests/e2e/init.spec.js +++ /dev/null @@ -1,14 +0,0 @@ -// @ts-check -import { expect, test } from "@playwright/test"; - -test('Basic webpage test', async ({ page }) => { - await page.goto('/demos/index.html'); - - console.log(await page.title()) - - // Expect a title "to contain" a substring. - await expect(page).toHaveTitle( 'Vanilla LazyLoad - Demo Page' ); - - // expect to find a list of links on the page - await expect(page.locator('a')).toHaveCount(41) -});