1
0
Fork 0
mirror of synced 2024-07-30 10:36:28 +12:00
budibase/packages/server/__mocks__/mysql2.ts

12 lines
183 B
TypeScript
Raw Normal View History

2024-03-20 05:50:48 +13:00
const client = {
connect: jest.fn(),
query: jest.fn((query, bindings, fn) => {
fn(null, [])
}),
}
2024-03-20 05:50:48 +13:00
module.exports = {
createConnection: jest.fn(() => client),
client,
}