chore: initial commit
This commit is contained in:
12
e2e/playwright/vue.spec.ts
Normal file
12
e2e/playwright/vue.spec.ts
Normal 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
4
e2e/tsconfig.json
Normal file
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"extends": "@tsconfig/node22/tsconfig.json",
|
||||
"include": ["./**/*"]
|
||||
}
|
||||
Reference in New Issue
Block a user