chore(client): remove outdated welcome message (#59218)

This commit is contained in:
Huyen Nguyen
2025-03-22 22:59:04 +07:00
committed by GitHub
parent 88fb02f994
commit e936ddcf6e
8 changed files with 82 additions and 183 deletions
-17
View File
@@ -18,23 +18,6 @@ test.describe('Learn - Unauthenticated user', () => {
})
).toBeVisible();
// Advice for new learners
const learnReadThisSection = page.getByTestId('learn-read-this-section');
await expect(learnReadThisSection).toBeVisible();
const learnReadThisSectionHeading = page.getByTestId(
'learn-read-this-heading'
);
await expect(learnReadThisSectionHeading).toBeVisible();
const learnReadThisSectionParagraphs =
page.getByTestId('learn-read-this-p');
await expect(learnReadThisSectionParagraphs).toHaveCount(10);
for (const paragraph of await learnReadThisSectionParagraphs.all()) {
await expect(paragraph).toBeVisible();
}
await expect(
page.getByRole('link', { name: 'Sign in to save your progress' })
).toBeVisible();