Skip to content

Commit

Permalink
Adjust login heading and a11y playwright config
Browse files Browse the repository at this point in the history
  • Loading branch information
hannesschaletzky committed Dec 18, 2023
1 parent c3683ef commit b3de6ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/routes/login.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ export default function Index() {
<div className="mx-auto mt-8 w-full max-w-sm overflow-hidden rounded-sm bg-white px-8 py-6 shadow-md">
{!isIdle && <LoadingOverlay message="Please wait..."></LoadingOverlay>}

<h2 className="mb-8 mt-4 text-center text-3xl font-bold text-blue-600">
<h1 className="mb-8 mt-4 text-center text-3xl font-bold text-blue-600">
Enter. Time.
</h2>
</h1>

{actionData?.message && (
<div className="mt-4 w-full rounded-sm bg-red-500 text-white">
Expand Down
4 changes: 2 additions & 2 deletions tests/a11y/playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ export default defineConfig({

/* Run your local dev server before starting the tests */
webServer: {
command: "npm run dev",
command: "MOCK_TROI_API=true npm run dev",
url: "http://127.0.0.1:3000",
reuseExistingServer: !process.env.CI,
reuseExistingServer: false,
},
});

0 comments on commit b3de6ce

Please sign in to comment.