Skip to content

Commit

Permalink
Fix mysql integration test with multipleStatements: true
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed Mar 9, 2020
1 parent fd25d1e commit 994c30b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cli/prisma2/src/__tests__/integrate.mysql.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ const latestAlphaPromise = getLatestAlphaTag()

let db: mysql.Connection
before(async () => {
db = await mysql.createConnection(connectionString)
db = await mysql.createConnection({
uri: connectionString,
multipleStatements: true,
})
})

beforeEach(async () => {
Expand Down

0 comments on commit 994c30b

Please sign in to comment.