chore: initial commit
Some checks failed
/ playwright (push) Successful in 1m33s
/ build-and-test (push) Failing after 2m7s
CI/CD Pipeline / build-and-deploy (push) Successful in 2m16s
CI/CD Pipeline / playwright (push) Successful in 3m26s

This commit is contained in:
严浩
2025-10-15 16:24:49 +08:00
commit e50d699a2a
81 changed files with 22534 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
import { test, expect } from '@playwright/test';
test.describe('Vue App', () => {
test('app renders correctly', async ({ page }) => {
await page.goto('/');
const app = page.locator('#app');
await expect(app).toBeVisible();
await page.locator('.app-loading').waitFor({ state: 'detached' });
});
});

4
e2e/tsconfig.json Normal file
View File

@@ -0,0 +1,4 @@
{
"extends": "@tsconfig/node22/tsconfig.json",
"include": ["./**/*"]
}