Los comandos se pueden ejecutar desde la raíz del repositorio usando npx nx. Usa npx nx run {project}:{command} para especificar explícitamente el destino.
# Frontendnpx nx test twenty-front # Jest unit testsnpx nx storybook:build twenty-front # Build Storybooknpx nx storybook:test twenty-front # Storybook tests# Backendnpx nx run twenty-server:test:unit # Unit testsnpx nx run twenty-server:test:integration # Integration testsnpx nx run twenty-server:test:integration:with-db-reset # Integration with DB reset# Single file (fastest)npx jest path/to/test.test.ts --config=packages/{project}/jest.config.mjs