From 927b2da31220a891fda21c836a801f5d99a79ed2 Mon Sep 17 00:00:00 2001 From: "Jiaxiao (mossaka) Zhou" Date: Tue, 10 Feb 2026 21:08:40 +0000 Subject: [PATCH] fix: update testPathPattern to testPathPatterns for Jest 30 Jest 30 (upgraded in PR #580) renamed --testPathPattern to --testPathPatterns, breaking all 3 chroot integration test jobs. Co-Authored-By: Claude Opus 4.6 (1M context) --- .github/workflows/test-chroot.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test-chroot.yml b/.github/workflows/test-chroot.yml index c4f15c7b..2f5457f5 100644 --- a/.github/workflows/test-chroot.yml +++ b/.github/workflows/test-chroot.yml @@ -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 env: JEST_TIMEOUT: 180000 @@ -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 @@ -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 @@ -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