Files
projectAIpopular/tests/e2e/package.json
T

28 lines
908 B
JSON

{
"name": "e2e-tests",
"version": "1.0.0",
"description": "端云协同 LLM 系统端到端测试(Playwright + 指纹浏览器)",
"private": true,
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"test:chromium": "playwright test --project=Chromium",
"test:firefox": "playwright test --project=Firefox",
"test:mobile": "playwright test --project=iPhone14Pro,iPad",
"test:api": "node run-api-check.js",
"install:browsers": "playwright install --with-deps chromium"
},
"devDependencies": {
"@playwright/test": "^1.62.1",
"@playwright/browser-chromium": "^1.62.1",
"@playwright/browser-firefox": "^1.62.1",
"@playwright/browser-webkit": "^1.62.1"
},
"dependencies": {
"axios": "^1.7.0",
"dotenv": "^16.4.5"
}
}