mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-28 18:26:54 +00:00
test(e2e, playwright): solution-viewer (#52016)
Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import { test, expect } from '@playwright/test';
|
||||
|
||||
test.use({ storageState: 'playwright/.auth/certified-user.json' });
|
||||
|
||||
test.beforeEach(async ({ page }) => {
|
||||
await page.goto(
|
||||
'/certification/certifieduser/javascript-algorithms-and-data-structures'
|
||||
);
|
||||
});
|
||||
|
||||
test.describe('Solution Viewer component', () => {
|
||||
test('renders the modal correctly', async ({ page }) => {
|
||||
await page.getByRole('button').filter({ hasText: /view/i }).first().click();
|
||||
|
||||
// The modal should show the solution title...
|
||||
await expect(
|
||||
page.getByRole('heading').and(page.getByText(/solution for/i))
|
||||
).toBeVisible();
|
||||
// ...and relevant code file/s
|
||||
await expect(page.getByText(/js/i)).toBeVisible();
|
||||
await expect(page.locator('pre').first()).toBeVisible();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user