Skip to content

Commit

Permalink
Disable integration test for PostgreSQL citext for now
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Mar 20, 2020
1 parent cb6f6d6 commit 1545ac0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 17 deletions.
17 changes: 0 additions & 17 deletions cli/prisma2/__snapshots__/integrate.postgresql.test.ts.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,23 +49,6 @@ model users {
}
`

exports['users.findMany({ where: { email: \'MAX@PRISMA.IO\' } })'] = `
generator client {
provider = "prisma-client-js"
output = "***"
}
datasource pg {
provider = "postgresql"
url = "***"
}
model users {
email String @unique
id Int @default(autoincrement()) @id
}
`

exports['teams.findOne({ where: { id: 2 } })'] = `
generator client {
provider = "prisma-client-js"
Expand Down
1 change: 1 addition & 0 deletions cli/prisma2/src/__tests__/integrate.postgresql.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1602,6 +1602,7 @@ function tests(): Test[] {
],
},
{
todo: true,
up: `
create extension citext;
create table users (
Expand Down

0 comments on commit 1545ac0

Please sign in to comment.