1
0
Fork 0
mirror of synced 2024-07-04 05:50:57 +12:00
budibase/packages/server/__mocks__/mysql.js

11 lines
151 B
JavaScript
Raw Normal View History

2021-03-16 05:26:46 +13:00
const mysql = {}
const client = {
connect: jest.fn(),
2021-03-17 08:01:51 +13:00
query: jest.fn(),
2021-03-16 05:26:46 +13:00
}
mysql.createConnection = jest.fn(() => client)
module.exports = mysql