Files
lobehub/e2e/package.json
renovate[bot] fd93f6d0c7 Update dependency node to v24.11.1 (#10327)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-11-21 14:18:45 +08:00

25 lines
876 B
JSON

{
"name": "@lobechat/e2e-tests",
"version": "0.1.0",
"private": true,
"description": "E2E tests for LobeChat using Cucumber and Playwright",
"scripts": {
"test": "cucumber-js --config cucumber.config.js",
"test:discover": "cucumber-js --config cucumber.config.js src/features/discover/",
"test:headed": "HEADLESS=false cucumber-js --config cucumber.config.js",
"test:routes": "cucumber-js --config cucumber.config.js --tags '@routes'",
"test:routes:ci": "cucumber-js --config cucumber.config.js --tags '@routes and not @ci-skip'",
"test:smoke": "cucumber-js --config cucumber.config.js --tags '@smoke'"
},
"dependencies": {
"@cucumber/cucumber": "^12.2.0",
"@playwright/test": "^1.56.1",
"playwright": "^1.56.1"
},
"devDependencies": {
"@types/node": "^24.10.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
}
}