Reviewers: #reviewers Subscribers: jenkins-user Differential Revision: https://hub.sealcode.org/D1447
10 lines
331 B
TypeScript
10 lines
331 B
TypeScript
import { VERY_LONG_TEST_TIMEOUT, webhintURL } from "../test_utils/webhint.js";
|
|
import { withProdApp } from "../test_utils/with-prod-app.js";
|
|
|
|
describe("homepage", function () {
|
|
it("passes webhint tests", () =>
|
|
withProdApp(async ({ base_url }) => {
|
|
await webhintURL(`${base_url}/`);
|
|
})).timeout(VERY_LONG_TEST_TIMEOUT);
|
|
});
|