Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions e2e/ats-analyzer.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ test.describe("ATS Analyzer - Page Load", () => {
.isVisible();
expect(fallbackVisible).toBe(true);
} else {
// ATS Analyzer page has a "Start ATS Analysis" button, not a traditional upload
// ATS Analyzer page has a "Start Document Analysis" button, not a traditional upload
const startButton = page.getByRole("button", {
name: /start ats analysis/i,
name: /start document analysis/i,
});

await expect(startButton).toBeVisible();
Expand Down
6 changes: 4 additions & 2 deletions e2e/landing-page.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ test.describe("Landing Page - Features", () => {

await page.evaluate(
(amount) => window.scrollTo(0, amount),
scrollAmount
scrollAmount,
);
await page.waitForTimeout(500);

Expand Down Expand Up @@ -250,7 +250,9 @@ test.describe("Landing Page - Performance", () => {
(error) =>
!error.includes("favicon") &&
!error.includes("404") &&
!error.includes("X-Frame-Options")
!error.includes("X-Frame-Options") &&
!error.includes("downloadable font") &&
!error.includes("font-family"),
);

if (browserName === "webkit") {
Expand Down
Loading
Loading