18 lines
472 B
Markdown
18 lines
472 B
Markdown
# API E2E Tests
|
|
|
|
API automation should prefer full `AppModule` E2E coverage for cross-module workflows, with `hookTimeout` kept at 60 seconds for slow module bootstrap.
|
|
|
|
Remote black-box API checks:
|
|
|
|
```powershell
|
|
$env:LISGLOSIPS_AUTH_PASSWORD = '<password>'
|
|
pnpm test:remote-auth
|
|
pnpm test:remote-customers
|
|
pnpm test:remote-gateways
|
|
pnpm test:remote-vendors
|
|
pnpm test:remote-calls
|
|
pnpm test:remote-recordings
|
|
pnpm test:remote-dashboard
|
|
pnpm test:remote-perf-security
|
|
```
|