Files
Stirling-PDF/frontend/src/core/tests/stubbed/add-page-numbers-tool.spec.ts
T
2026-04-27 11:35:50 +01:00

31 lines
1.1 KiB
TypeScript

import { test, expect } from "@app/tests/helpers/stub-test-base";
import { uploadFiles } from "@app/tests/helpers/ui-helpers";
import path from "path";
const SAMPLE_PDF = path.join(__dirname, "../test-fixtures/sample.pdf");
/**
* Add Page Numbers walks the user through a multi-step config: position
* (corner / centre), font/size, page range. Asserting the run button
* starts disabled and enables only after a file is uploaded catches
* the most common regression — a config-validation effect that fails
* to mark the form valid.
*/
test.describe("Add Page Numbers tool — config validation", () => {
test("run button stays disabled until a PDF is uploaded", async ({
page,
}) => {
await page.goto("/add-page-numbers");
await page.waitForLoadState("domcontentloaded");
const runBtn = page.locator('[data-tour="run-button"]');
await expect(runBtn).toBeVisible({ timeout: 5_000 });
await expect(runBtn).toBeDisabled();
await uploadFiles(page, SAMPLE_PDF);
// After upload the run button should enable (default position selected)
await expect(runBtn).toBeEnabled({ timeout: 5_000 });
});
});