2024-06-09 10:50:53 +00:00
|
|
|
// @ts-check
|
2024-09-11 20:34:33 +00:00
|
|
|
|
|
|
|
// @watch start
|
|
|
|
// web_src/css/markup/**
|
|
|
|
// @watch end
|
|
|
|
|
2024-08-14 21:34:36 +00:00
|
|
|
import {expect} from '@playwright/test';
|
|
|
|
import {test} from './utils_e2e.js';
|
2024-06-09 10:50:53 +00:00
|
|
|
|
2024-07-22 18:03:32 +00:00
|
|
|
test('markup with #xyz-mode-only', async ({page}) => {
|
2024-06-09 10:50:53 +00:00
|
|
|
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();
|
2024-07-22 18:03:32 +00:00
|
|
|
await expect(comment.locator('[src$="#gh-dark-mode-only"]')).toBeHidden();
|
2024-06-09 10:50:53 +00:00
|
|
|
});
|