Update tests with new configuration

This commit is contained in:
adilallo
2026-01-28 14:50:30 -07:00
parent 63489ee38f
commit e6e5499646
8 changed files with 105 additions and 162 deletions
+1 -2
View File
@@ -87,7 +87,6 @@ describe("User Journey Integration", () => {
});
test("user navigates through the application using header navigation", async () => {
const user = userEvent.setup();
render(
<div>
<Header />
@@ -107,8 +106,8 @@ describe("User Journey Integration", () => {
// Test that navigation links are present and clickable
for (const link of headerNavLinks) {
await user.click(link);
expect(link).toBeInTheDocument();
expect(link).toHaveAttribute("href");
}
});