1
0
Fork 0
mirror of synced 2024-08-21 13:01:47 +12:00
budibase/packages/server/__mocks__/mysql.js
Martin McKeaveney 172db5f255 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