Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/test-chroot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
- name: Run chroot language tests
run: |
echo "=== Running chroot language tests ==="
npm run test:integration -- --testPathPattern="chroot-languages" --verbose
npm run test:integration -- --testPathPatterns="chroot-languages" --verbose
Copy link

Copilot AI Feb 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This workflow now passes --testPathPatterns, but the repo currently pins Jest 29.x (package.json has jest: ^29.0.0 and package-lock resolves [email protected]). With Jest 29 the supported flag is --testPathPattern (singular), so this will break CI unless the Jest 30 upgrade is included/rebased in this PR (or the command is made compatible with both versions).

This issue also appears in the following locations of the same file:

  • line 202
  • line 258

Copilot uses AI. Check for mistakes.
env:
JEST_TIMEOUT: 180000

Expand Down Expand Up @@ -238,7 +238,7 @@ jobs:
- name: Run chroot package manager tests
run: |
echo "=== Running chroot package manager tests ==="
npm run test:integration -- --testPathPattern="chroot-package-managers" --verbose
npm run test:integration -- --testPathPatterns="chroot-package-managers" --verbose
env:
JEST_TIMEOUT: 300000

Expand Down Expand Up @@ -312,7 +312,7 @@ jobs:
- name: Run chroot procfs tests
run: |
echo "=== Running chroot procfs tests ==="
npm run test:integration -- --testPathPattern="chroot-procfs" --verbose
npm run test:integration -- --testPathPatterns="chroot-procfs" --verbose
env:
JEST_TIMEOUT: 180000

Expand Down Expand Up @@ -368,7 +368,7 @@ jobs:
- name: Run chroot edge case tests
run: |
echo "=== Running chroot edge case tests ==="
npm run test:integration -- --testPathPattern="chroot-edge-cases" --verbose
npm run test:integration -- --testPathPatterns="chroot-edge-cases" --verbose
env:
JEST_TIMEOUT: 180000

Expand Down
Loading