test(e2e,playwright): challenge-description.tsx (#51914)

This commit is contained in:
Ann-Cherian
2023-10-13 13:21:00 +05:30
committed by GitHub
parent ddd034f8b4
commit 1c77a3bb04
2 changed files with 27 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
import { test, expect } from '@playwright/test';
test.beforeEach(async ({ page }) => {
await page.goto(
'/learn/foundational-c-sharp-with-microsoft/write-your-first-code-using-c-sharp/trophy-write-your-first-code-using-c-sharp'
);
});
test.afterEach(async ({ page }) => {
await page.close();
});
test.describe('Challenge Description Component Tests', () => {
test('should be visible', async ({ page }) => {
const challengeDescription = page.getByTestId('challenge-description');
await expect(challengeDescription).toBeVisible();
});
test('should contain text', async ({ page }) => {
const challengeDescription = page.getByTestId('challenge-description');
await expect(challengeDescription).toHaveText(/ */);
});
});