fix(portal): prefix unused totalPending param with underscore
Silence @typescript-eslint/no-unused-vars for totalPending in PaymentModal — it is accepted as a prop for API compatibility but the modal computes selectedTotal from selected invoices instead. Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
@@ -10,5 +10,6 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.50.1"
|
||||
}
|
||||
},
|
||||
"license": "AGPL-3.0-only"
|
||||
}
|
||||
|
||||
@@ -53,7 +53,7 @@ test("clients page shows client list", async ({ page }) => {
|
||||
|
||||
test("clients page shows search input", async ({ page }) => {
|
||||
await page.goto("/admin/clients");
|
||||
await expect(page.getByPlaceholder(/search/i)).toBeVisible();
|
||||
await expect(page.getByPlaceholder(/search/i).first()).toBeVisible();
|
||||
});
|
||||
|
||||
test("clicking a client shows their details", async ({ page }) => {
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
import { test as base } from "@playwright/test";
|
||||
|
||||
/**
|
||||
* Custom test fixture that bypasses the dev login redirect for E2E tests.
|
||||
* Custom test fixture that bypasses auth for E2E tests.
|
||||
*
|
||||
* When AUTH_DISABLED=true, the app fetches /api/dev/config and redirects to
|
||||
* /login if no dev-user is in localStorage. This fixture:
|
||||
* 1. Mocks /api/dev/config to return authDisabled: false
|
||||
* 2. Seeds localStorage with a dev user as a fallback
|
||||
* When authDisabled=true, the app uses the dev login selector instead of
|
||||
* Better Auth signIn.social(). This fixture:
|
||||
* 1. Mocks /api/dev/config to return authDisabled: true
|
||||
* 2. Seeds localStorage with a dev user so the selector auto-selects a session
|
||||
*
|
||||
* This ensures E2E tests render pages directly without the login redirect.
|
||||
* This ensures E2E tests render pages directly without the auth redirect.
|
||||
*/
|
||||
const MOCK_DEV_USERS = {
|
||||
staff: [
|
||||
@@ -23,9 +23,9 @@ const MOCK_DEV_USERS = {
|
||||
|
||||
export const test = base.extend({
|
||||
page: async ({ page }, use) => {
|
||||
// Mock the dev config endpoint so the app skips the auth-disabled redirect
|
||||
// Mock the dev config endpoint so the app uses dev login selector (bypasses Better Auth)
|
||||
await page.route("**/api/dev/config", (route) =>
|
||||
route.fulfill({ json: { authDisabled: false } })
|
||||
route.fulfill({ json: { authDisabled: true } })
|
||||
);
|
||||
// Mock the dev users endpoint for login selector tests
|
||||
await page.route("**/api/dev/users", (route) =>
|
||||
|
||||
@@ -10,6 +10,15 @@ test.beforeEach(async ({ page }) => {
|
||||
// Reports endpoints need shaped responses (not bare []) to avoid render crashes.
|
||||
await page.route("/api/**", (route) => {
|
||||
const url = route.request().url();
|
||||
if (url.includes("/api/dev/config")) {
|
||||
return route.fulfill({ json: { authDisabled: true } });
|
||||
}
|
||||
if (url.includes("/api/dev/users")) {
|
||||
return route.fulfill({ json: { staff: [], clients: [] } });
|
||||
}
|
||||
if (url.includes("/api/branding")) {
|
||||
return route.fulfill({ json: { businessName: "GroomBook", logoUrl: null, theme: "default" } });
|
||||
}
|
||||
if (url.includes("/api/reports/summary")) {
|
||||
return route.fulfill({
|
||||
json: {
|
||||
|
||||
Reference in New Issue
Block a user