1
0
Fork 0
mirror of synced 2024-08-20 12:31:20 +12:00
budibase/packages/server/__mocks__/mysql.js

13 lines
188 B
JavaScript
Raw Normal View History

2021-03-16 05:26:46 +13:00
const mysql = {}
const client = {
connect: jest.fn(),
2021-06-04 05:48:04 +12:00
query: jest.fn((query, fn) => {
fn(null, [])
}),
2021-03-16 05:26:46 +13:00
}
mysql.createConnection = jest.fn(() => client)
module.exports = mysql