File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -906,16 +906,14 @@ jobs:
906
906
strategy :
907
907
fail-fast : false
908
908
matrix :
909
- # For whatever reason, these segfault on Node 18, so we are skipping these for now...
910
- node : [20, 21]
909
+ node : [18, 20, 21]
911
910
remix : [1, 2]
912
911
# Remix v2 only supports Node 18+, so run Node 14, 16 tests separately
913
912
include :
914
913
- node : 14
915
914
remix : 1
916
- # For whatever reason, these segfault on Node 16, so we are skipping these for now...
917
- # - node: 16
918
- # remix: 1
915
+ - node : 16
916
+ remix : 1
919
917
steps :
920
918
- name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
921
919
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ module.exports = {
4
4
...baseConfig ,
5
5
testMatch : [ `${ __dirname } /test/server/**/*.test.ts` ] ,
6
6
testPathIgnorePatterns : [ `${ __dirname } /test/client` ] ,
7
- detectOpenHandles : true ,
8
7
forceExit : true ,
9
8
testTimeout : 30000 ,
10
9
setupFilesAfterEnv : [ `${ __dirname } /jest.setup.js` ] ,
Original file line number Diff line number Diff line change 8
8
"start" : " next start" ,
9
9
"pretest" : " yarn build" ,
10
10
"test:client" : " playwright test" ,
11
- "test:server" : " jest --detectOpenHandles -- forceExit --runInBand"
11
+ "test:server" : " jest --forceExit --runInBand"
12
12
},
13
13
"dependencies" : {
14
14
"@sentry/nextjs" : " file:../../" ,
Original file line number Diff line number Diff line change @@ -4,6 +4,5 @@ module.exports = {
4
4
...baseConfig ,
5
5
testMatch : [ `${ __dirname } /test/server/**/*.test.ts` ] ,
6
6
testPathIgnorePatterns : [ `${ __dirname } /test/client` ] ,
7
- detectOpenHandles : true ,
8
7
forceExit : true ,
9
8
} ;
You can’t perform that action at this time.
0 commit comments