3 lines
309 B
TypeScript
3 lines
309 B
TypeScript
import {expect,test} from "@playwright/test";
|
|
test("renders the React gallery shell while catalog reconnects",async({page})=>{await page.goto("/");await expect(page.getByText("Renderive 性能画廊")).toBeVisible();await expect(page.getByText("等待后端返回控件与帧策略目录")).toBeVisible();});
|