1
0
Fork 0
mirror of synced 2024-08-21 04:51:42 +12:00
budibase/packages/server/__mocks__/mysql.js
2021-06-03 18:48:04 +01:00

12 lines
188 B
JavaScript

const mysql = {}
const client = {
connect: jest.fn(),
query: jest.fn((query, fn) => {
fn(null, [])
}),
}
mysql.createConnection = jest.fn(() => client)
module.exports = mysql