twenty/packages/twenty-e2e-testing
Etienne c58bf9cf06
Fix e2e test (#18866)
Three feature flags changed the UI:
IS_NAVIGATION_MENU_ITEM_ENABLED — Sidebar no longer has a default
"People" link → navigate via URL instead
IS_COMMAND_MENU_ITEM_ENABLED — Button label is now "Create new Person"
(interpolated from object name) instead of static "Create new record"
IS_JUNCTION_RELATIONS_ENABLED — Company is now a junction relation
("Previous Companies") displayed inline, no longer a boxed
dynamic-relation-widget on the record page
2026-03-23 16:56:15 +00:00
..
lib Re-enable disabled lint rules and right-size CI runners (#18461) 2026-03-06 13:33:02 +00:00
reporters e2e tests (#16533) 2025-12-17 08:48:17 +01:00
tests Fix e2e test (#18866) 2026-03-23 16:56:15 +00:00
.env.example e2e tests (#16533) 2025-12-17 08:48:17 +01:00
.gitignore E2E tests (#6717) 2024-08-27 11:07:10 +02:00
package.json fix: playwright downloads and installs browsers without verifying the authenticity of the SSL certificate (#15843) 2025-11-17 08:16:56 +01:00
playwright.config.ts e2e tests (#16533) 2025-12-17 08:48:17 +01:00
project.json Workflow e2e tests – 1st batch (#9713) 2025-01-20 10:59:01 +01:00
README.md Add NX commands to twenty-e2e-testing package (#9222) 2024-12-31 15:49:52 +01:00

Twenty end-to-end (E2E) Testing

Prerequisite

Installing the browsers:

npx nx setup twenty-e2e-testing

Run end-to-end tests

npx nx test twenty-e2e-testing

Start the interactive UI mode

npx nx test:ui twenty-e2e-testing

Run test in specific file

npx nx test twenty-e2e-testing <filename>

Example (location of the test must be specified from the root of twenty-e2e-testing package):

npx nx test twenty-e2e-testing tests/login.spec.ts

Runs the tests in debug mode.

npx nx test:debug twenty-e2e-testing

Show report after tests

npx nx test:report twenty-e2e-testing

Q&A

Why there's path.resolve() everywhere?

That's thanks to differences in root directory when running tests using commands and using IDE. When running tests with commands, the root directory is twenty/packages/twenty-e2e-testing, for IDE it depends on how someone sets the configuration. This way, it ensures that no matter which IDE or OS Shell is used, the result will be the same.