import { test, expect } from '@playwright/test'; test.describe('插件管理', () => { test.skip('插件列表页面加载', async ({ page }) => { await page.goto('/#/plugins'); await expect(page.locator('.ant-card, .ant-table')).toBeVisible(); }); });