mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-01 23:29:12 +01:00
40baa96fc3
- Add https://github.com/playwright-community/eslint-plugin-playwright as a linter for the playwright tests. - `no-networkidle` and `no-conditional-in-test` are disabled as fixing those doesn't seem to really improve testing quality for our use case. - Some non-recommended linters are enabled to ensure consistency (the prefer rules).
13 lines
573 B
JavaScript
13 lines
573 B
JavaScript
// @ts-check
|
|
import {test, expect} from '@playwright/test';
|
|
|
|
test('markup with #xyz-mode-only', async ({page}) => {
|
|
const response = await page.goto('/user2/repo1/issues/1');
|
|
await expect(response?.status()).toBe(200);
|
|
await page.waitForLoadState('networkidle');
|
|
|
|
const comment = page.locator('.comment-body>.markup', {hasText: 'test markup light/dark-mode-only'});
|
|
await expect(comment).toBeVisible();
|
|
await expect(comment.locator('[src$="#gh-light-mode-only"]')).toBeVisible();
|
|
await expect(comment.locator('[src$="#gh-dark-mode-only"]')).toBeHidden();
|
|
});
|