1
0
Fork 0
mirror of synced 2024-10-03 19:43:32 +13:00
budibase/packages/server/__mocks__/mysql.js
Martin McKeaveney d37283adda airtable tests
2021-03-16 18:43:56 +00:00

10 lines
162 B
JavaScript

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