Skip to content

Commit

Permalink
chore: fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
timsuchanek committed May 29, 2020
1 parent 1b8da5b commit 52bef5d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -17,7 +17,7 @@ module.exports = async () => {
process.env.TEST_POSTGRES_URI || 'postgres://localhost:5432/prisma-dev'

const credentials = uriToCredentials(originalConnectionString)
const sourcePort = credentials.port ?? 5432
const sourcePort = credentials.port || 5432
const newPort = await getPort({
port: getPort.makeRange(3000, 3200),
})
Expand Down

0 comments on commit 52bef5d

Please sign in to comment.