1
0
Fork 0
mirror of synced 2024-07-16 03:35:56 +12:00
budibase/packages/server/__mocks__/mysql.js

13 lines
198 B
JavaScript
Raw Normal View History

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