Skip to main content

Python integration tests

cd agent
pytest test_integration.py -v                # all tests
pytest test_integration.py -v -k test_health  # single test
pytest test_telemetry.py -v                  # telemetry tests

Playwright E2E tests

npx playwright test                           # all 17 specs
npx playwright test tests/smoke.spec.js        # single spec
npx playwright test -g "page loads"             # by title
npx playwright test --project=smoke             # smoke only
Playwright tests require the server running on :2326 and use Microsoft Edge.