- check-staging.sh: Quick health check for all staging deployments - Checks via SOCKS5 proxy, reports status table - Supports --json and --ci modes - Integrated into staging-verify workflow as pre-check Usage: pnpm check # Table output pnpm check:json # JSON output pnpm check:ci # Exit 1 on failures 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
19 lines
702 B
JSON
19 lines
702 B
JSON
{
|
|
"name": "@lilith/webmap-e2e",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "E2E tests for webmap staging environments",
|
|
"scripts": {
|
|
"test": "playwright test",
|
|
"test:atlilith": "STAGING_URL=http://next.www.atlilith.com playwright test staging.spec.ts",
|
|
"test:trustedmeet": "TRUSTEDMEET_STAGING_URL=http://next.www.trustedmeet.com playwright test staging-trustedmeet.spec.ts",
|
|
"test:all": "pnpm test:atlilith && pnpm test:trustedmeet",
|
|
"check": "./check-staging.sh",
|
|
"check:json": "./check-staging.sh --json",
|
|
"check:ci": "./check-staging.sh --ci",
|
|
"report": "playwright show-report"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.48.0"
|
|
}
|
|
}
|