Skip to content
Merged
Show file tree
Hide file tree
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: 3 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -906,16 +906,14 @@ jobs:
strategy:
fail-fast: false
matrix:
# For whatever reason, these segfault on Node 18, so we are skipping these for now...
node: [20, 21]
node: [18, 20, 21]
remix: [1, 2]
# Remix v2 only supports Node 18+, so run Node 14, 16 tests separately
include:
- node: 14
remix: 1
# For whatever reason, these segfault on Node 16, so we are skipping these for now...
# - node: 16
# remix: 1
- node: 16
remix: 1
steps:
- name: Check out current commit (${{ needs.job_get_metadata.outputs.commit_label }})
uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion packages/nextjs/test/integration/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ module.exports = {
...baseConfig,
testMatch: [`${__dirname}/test/server/**/*.test.ts`],
testPathIgnorePatterns: [`${__dirname}/test/client`],
detectOpenHandles: true,
forceExit: true,
testTimeout: 30000,
setupFilesAfterEnv: [`${__dirname}/jest.setup.js`],
Expand Down
2 changes: 1 addition & 1 deletion packages/nextjs/test/integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"start": "next start",
"pretest": "yarn build",
"test:client": "playwright test",
"test:server": "jest --detectOpenHandles --forceExit --runInBand"
"test:server": "jest --forceExit --runInBand"
},
"dependencies": {
"@sentry/nextjs": "file:../../",
Expand Down
1 change: 0 additions & 1 deletion packages/remix/test/integration/jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ module.exports = {
...baseConfig,
testMatch: [`${__dirname}/test/server/**/*.test.ts`],
testPathIgnorePatterns: [`${__dirname}/test/client`],
detectOpenHandles: true,
forceExit: true,
};