18 lines
827 B
TypeScript
18 lines
827 B
TypeScript
import {env} from 'node:process';
|
|
import {expect, test} from '@playwright/test';
|
|
import {apiCreateRepo, apiCreateIssue, assertNoJsError, randomString} from './utils.ts';
|
|
|
|
test('mermaid diagram in issue', async ({page, request}) => {
|
|
const repoName = `e2e-mermaid-${randomString(8)}`;
|
|
const owner = env.GITEA_TEST_E2E_USER;
|
|
await apiCreateRepo(request, {name: repoName, autoInit: false});
|
|
const body = '```mermaid\nflowchart LR\n Alpha --> Beta\n Beta --> Gamma\n```\n';
|
|
const {index} = await apiCreateIssue(request, {owner, repo: repoName, title: 'mermaid test', body});
|
|
await page.goto(`/${owner}/${repoName}/issues/${index}`);
|
|
|
|
const svg = page.frameLocator('iframe.markup-content-iframe').locator('svg');
|
|
await expect(svg).toContainText(/Alpha[\s\S]*Beta[\s\S]*Gamma/);
|
|
|
|
await assertNoJsError(page);
|
|
});
|