strona-czynna/src/back/routes/index.test.ts
Kuba Orlik 8009be3341 Move to Mocha for tests. Ignore files generated by sealgen
Reviewers: #reviewers

Subscribers: jenkins-user

Differential Revision: https://hub.sealcode.org/D1447
2024-04-30 12:00:15 +02:00

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);
});