08ea5fbe98
添加用户管理视图、API和状态管理文件
9 lines
192 B
TypeScript
9 lines
192 B
TypeScript
import { test, expect, devices } from '@playwright/test';
|
|
|
|
test.use({
|
|
...devices['Desktop Chrome'],
|
|
});
|
|
|
|
test('test', async ({ page }) => {
|
|
await page.goto('http://localhost:8081/#/');
|
|
}); |