Skip to content

Commit

Permalink
test: pin prisma to < 5 when running on node 14 (#1717)
Browse files Browse the repository at this point in the history
  • Loading branch information
bizob2828 authored Jul 12, 2023
1 parent 9fba7cd commit b000d7b
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions test/versioned/prisma/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,22 @@
"tests": [
{
"engines": {
"node": ">=14"
"node": "14"
},
"dependencies": {
"@prisma/client": ">=4.0.0",
"@prisma/client": ">=4.0.0 <5.0.0",
"prisma": "4.16.2"
},
"files": [
"prisma.tap.js"
]
},
{
"engines": {
"node": ">=16"
},
"dependencies": {
"@prisma/client": ">=5.0.0",
"prisma": "latest"
},
"files": [
Expand Down

0 comments on commit b000d7b

Please sign in to comment.