1
0
Fork 0
mirror of synced 2024-07-02 04:50:44 +12:00
budibase/packages/server/__mocks__/mysql.js
Martin McKeaveney 6698641182 mysql tests
2021-03-16 19:01:51 +00:00

11 lines
151 B
JavaScript

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