A success notification after a user logged in is tested but not in the exercises in the course material.
This makes little sense, since the tests should check, if the student has completed the exercises. Testing a behavior that was previously never specified should be avoided.
In the test "user can login" under "Authentication":
// Should redirect to home page and show success notification
await expect(page).toHaveURL("/")
await expect(page.getByTestId("notification")).toBeVisible()
A success notification after a user logged in is tested but not in the exercises in the course material.
This makes little sense, since the tests should check, if the student has completed the exercises. Testing a behavior that was previously never specified should be avoided.
In the test "user can login" under "Authentication":