Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,6 @@ npm-debug.log
.stylelintrc.js
.stylelintrc.cjs

# Cypress
**/cypress.config.ts
**/cypress

# Tests
.turbo/
coverage/
Expand Down
121 changes: 0 additions & 121 deletions .github/workflows/job-tests-e2e.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/job-tests-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,8 +161,8 @@ jobs:
-Dsonar.sources=apps,packages
-Dsonar.javascript.node.maxspace=4096
-Dsonar.javascript.lcov.reportPaths=coverage/apps/server/coverage/lcov.info,coverage/apps/client/coverage/lcov.info,coverage/packages/shared/coverage/lcov.info
-Dsonar.coverage.exclusions=**/*.spec.js,**/*.spec.ts,**/*.vue,**/assets/**,**/cypress/**,**/packages/test-utils/**,apps/server/src/plugins/**
-Dsonar.cpd.exclusions=**/*.spec.js,**/*.spec.ts,**/cypress/**
-Dsonar.coverage.exclusions=**/*.spec.js,**/*.spec.ts,**/*.vue,**/assets/**,**/packages/test-utils/**,apps/server/src/plugins/**
-Dsonar.cpd.exclusions=**/*.spec.js,**/*.spec.ts
-Dsonar.scm.provider=git
${{ github.event_name == 'pull_request' && steps.sonar-args.outputs.SONAR_ARGS_PR || steps.sonar-args.outputs.SONAR_ARGS_BRANCH }}
continue-on-error: true
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/workflow-continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@ jobs:
- '.github/workflows/**'
e2e:
- 'playwright/**'
- 'apps/client/cypress/**'

expose-vars:
runs-on: ubuntu-latest
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/workflow-merge-queue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ jobs:
- '.github/workflows/**'
e2e:
- 'playwright/**'
- 'apps/client/cypress/**'

expose-vars:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -121,19 +120,6 @@ jobs:
NODE_VERSION: ${{ needs.expose-vars.outputs.NODE_VERSION }}
TAG: pr-${{ github.event.number || needs.expose-vars.outputs.MERGE_GROUP_HEAD_SHA }}

cypress-tests:
uses: ./.github/workflows/job-tests-e2e.yml
if: ${{ needs.path-filter.outputs.apps == 'true' || needs.path-filter.outputs.packages == 'true' || needs.path-filter.outputs.ci == 'true' || needs.path-filter.outputs.e2e == 'true' }}
needs:
- playwright-tests
- path-filter
- expose-vars
- build
with:
NODE_VERSION: ${{ needs.expose-vars.outputs.NODE_VERSION }}
TAG: pr-${{ github.event.number || needs.expose-vars.outputs.MERGE_GROUP_HEAD_SHA }}
BROWSERS: "${{ github.base_ref == 'main' && 'chrome,firefox' || 'firefox' }}"

scan-vuln:
uses: ./.github/workflows/job-scan.yml
needs:
Expand All @@ -155,7 +141,6 @@ jobs:
- lint
- unit-tests
- build
- cypress-tests
- playwright-tests
- scan-vuln
steps:
Expand Down
4 changes: 0 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,6 @@ node_modules
.env.codespace
.env.docker

# cypress
screenshots
downloads

# init-db
apps/server/src/init/db/imports/data

Expand Down
5 changes: 2 additions & 3 deletions AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,8 @@ Migrations: standard Prisma Migrate. Major version data migrations in `migration
## Testing

- **Vitest**: unit tests everywhere (server, client, packages, plugins) — colocated `*.spec.ts` files
- **Cypress 15**: component + E2E tests in `apps/client` (Firefox default)
- **Playwright**: E2E in `playwright/` (Chromium + Firefox, parallel)
- Commands: `pnpm test` (all unit), `pnpm test:ct` (Cypress components), `pnpm playwright:test`
- Commands: `pnpm test` (all unit), `pnpm playwright:test`

## Code quality

Expand All @@ -64,7 +63,7 @@ Migrations: standard Prisma Migrate. Major version data migrations in `migration

- Shared base: `packages/tsconfig/tsconfig.base.json` — ESNext, NodeNext, strict, `@/* -> src/*` alias
- Server: extends shared base, uses `ts-patch`/`tspc` for path transform in emitted JS
- Client: does NOT extend shared base (Cypress incompatibility), uses `Bundler` module resolution
- Client: does NOT extend shared base, uses `Bundler` module resolution
- server-nestjs: standalone config with `emitDecoratorMetadata` + `experimentalDecorators`

## Main commands
Expand Down
80 changes: 0 additions & 80 deletions apps/client/cypress.config.ts

This file was deleted.

Loading
Loading