Fix test-backend — remove redundant CLI path arg conflicting with roots

The jest.roots config in package.json already restricts to backend/__tests__
and testPathIgnorePatterns excludes integration tests. The CLI path arg
was being interpreted as an additional ignore pattern, causing 0 matches.
This commit is contained in:
Jordan Ramos
2026-06-16 16:19:23 -06:00
parent 8b985a21f8
commit 2fed9221f1

View File

@@ -100,7 +100,7 @@ test-backend:
policy: pull policy: pull
script: script:
- test -d node_modules || npm ci - test -d node_modules || npm ci
- ./node_modules/.bin/jest --ci --forceExit --testPathIgnorePatterns='integration' backend/__tests__/ - ./node_modules/.bin/jest --ci --forceExit
timeout: 5 minutes timeout: 5 minutes
needs: needs:
- install-backend - install-backend