Page MenuHomeSealhub

horizontal-scroller-demo.test.ts
No OneTemporary

horizontal-scroller-demo.test.ts

import { withProdApp } from "../test_utils/with-prod-app.js";
import { VERY_LONG_TEST_TIMEOUT, webhintURL } from "../test_utils/webhint.js";
import { HorizontalScrollerDemoURL } from "./urls.js";
import { getBrowser } from "../test_utils/browser-creator.js";
import type { Browser, BrowserContext, Page } from "@playwright/test";
describe("HorizontalScrollerDemo webhint", () => {
it("doesn't crash", async function () {
return withProdApp(async ({ base_url, rest_api }) => {
await rest_api.get(HorizontalScrollerDemoURL);
await webhintURL(base_url + HorizontalScrollerDemoURL);
// alternatively you can use webhintHTML for faster but less precise scans
// or for scanning responses of requests that use some form of authorization:
// const response = await rest_api.get(HorizontalScrollerDemoURL);
// await webhintHTML(response);
});
}).timeout(VERY_LONG_TEST_TIMEOUT);
});
describe("HorizontalScrollerDemo", () => {
let page: Page;
let browser: Browser;
let context: BrowserContext;
beforeEach(async () => {
browser = await getBrowser();
context = await browser.newContext();
page = await context.newPage();
});
afterEach(async () => {
await context.close();
});
it("works as expected", async function () {
return withProdApp(async ({ base_url }) => {
await page.goto(base_url + HorizontalScrollerDemoURL);
});
}).timeout(VERY_LONG_TEST_TIMEOUT);
});

File Metadata

Mime Type
text/x-java
Expires
Sat, Nov 8, 08:14 (1 d, 7 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1034319
Default Alt Text
horizontal-scroller-demo.test.ts (1 KB)

Event Timeline