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:
906906 strategy :
907907 fail-fast : false
908908 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]
911910 remix : [1, 2]
912911 # Remix v2 only supports Node 18+, so run Node 14, 16 tests separately
913912 include :
914913 - node : 14
915914 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
919917 steps :
920918 - name : Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
921919 uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ module.exports = {
44 ...baseConfig ,
55 testMatch : [ `${ __dirname } /test/server/**/*.test.ts` ] ,
66 testPathIgnorePatterns : [ `${ __dirname } /test/client` ] ,
7- detectOpenHandles : true ,
87 forceExit : true ,
98 testTimeout : 30000 ,
109 setupFilesAfterEnv : [ `${ __dirname } /jest.setup.js` ] ,
Original file line number Diff line number Diff line change 88 "start" : " next start" ,
99 "pretest" : " yarn build" ,
1010 "test:client" : " playwright test" ,
11- "test:server" : " jest --detectOpenHandles -- forceExit --runInBand"
11+ "test:server" : " jest --forceExit --runInBand"
1212 },
1313 "dependencies" : {
1414 "@sentry/nextjs" : " file:../../" ,
Original file line number Diff line number Diff line change @@ -4,6 +4,5 @@ module.exports = {
44 ...baseConfig ,
55 testMatch : [ `${ __dirname } /test/server/**/*.test.ts` ] ,
66 testPathIgnorePatterns : [ `${ __dirname } /test/client` ] ,
7- detectOpenHandles : true ,
87 forceExit : true ,
98} ;
You can’t perform that action at this time.
0 commit comments