mirror of
https://github.com/goauthentik/authentik
synced 2026-04-27 18:07:15 +02:00
* web: Flesh out flow search clean up. * web: Fix issues surrounding escape key in modals. Tidy properties. * web: Tidy properties, types. * web: Clean up types. * web: Clarify labels for screen readers. * web: Fix ARIA group behavior, labeling, input selectors. * web: Flesh out test prereqs. * web: Clean up usage of nullish attributes directive. * web: Add placeholder attribute. * web: touch up comment. * web: Fix role matching, test selectors, etc. * web: Fix typo. * web: Remove redundant clean up. * web: Normalize tab attributes. * web: Use main role wrapper.
12 lines
338 B
TypeScript
12 lines
338 B
TypeScript
import { expect, test as setup } from "#e2e";
|
|
|
|
setup("Web server availability", async ({ baseURL }) => {
|
|
expect(baseURL, "Base URL is set").toBeTruthy();
|
|
|
|
const ok = await fetch(baseURL!)
|
|
.then((res) => res.ok)
|
|
.catch(() => false);
|
|
|
|
expect(ok, `Web server should be listening on ${baseURL}`).toBeTruthy();
|
|
});
|