Skip to content

Commit 069326b

Browse files
committed
v1.1.12: Add forceExit and testTimeout to Jest CI command
- Add --forceExit flag to ensure Jest exits after tests complete - Add --testTimeout=30000 to prevent individual tests from hanging - Fixes issue where test suite would run indefinitely in CI
1 parent 6ac54e2 commit 069326b

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@ All notable changes to NEXT Portal will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.1.12] - 2026-01-02
9+
10+
### Fixed
11+
- Added --forceExit and --testTimeout=30000 flags to Jest CI command
12+
- Ensures Jest exits after tests complete even if there are open handles
13+
- Prevents test suite from hanging indefinitely
14+
815
## [1.1.11] - 2026-01-02
916

1017
### Fixed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.11
1+
1.1.12

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"typecheck:build": "tsc --noEmit --project tsconfig.build.json",
2525
"typecheck:parallel": "tsc --build tsconfig.client.json tsconfig.server.json",
2626
"test": "jest",
27-
"test:ci": "jest --ci --coverage --maxWorkers=2",
27+
"test:ci": "jest --ci --coverage --maxWorkers=2 --forceExit --testTimeout=30000",
2828
"test:watch": "jest --watch",
2929
"test:coverage": "jest --coverage",
3030
"test:e2e": "playwright test",

0 commit comments

Comments
 (0)