fix: 修改测试用例名称为“页面加载正常”
All checks were successful
CI / build-and-deploy (push) Successful in 6m8s

This commit is contained in:
严浩
2024-10-10 11:34:52 +08:00
parent 694b1bd7e4
commit ff004ca36b

View File

@ -1,6 +1,6 @@
import { test, expect } from '@playwright/test'; import { test, expect } from '@playwright/test';
test('test', async ({ page }) => { test('页面加载正常', async ({ page }) => {
await page.goto('/'); await page.goto('/');
console.log(page.url()); console.log(page.url());
await expect(page.getByRole('link', { name: '中文-页面.page.vue' })).toBeVisible(); await expect(page.getByRole('link', { name: '中文-页面.page.vue' })).toBeVisible();