Files
vue-ts-example/tests/e2e/test-1.spec.ts
严浩 e50a16a583
All checks were successful
CI / build-and-deploy (push) Successful in 4m33s
Update ci.yaml to use pnpm instead of pnpx for Vercel commands
2024-09-26 17:56:57 +08:00

8 lines
230 B
TypeScript

import { test, expect } from '@playwright/test';
test('test', async ({ page }) => {
await page.goto('/');
console.log(page.url());
await expect(page.getByRole('link', { name: '中文-页面.page.vue' })).toBeVisible();
});