1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00
budibase/packages/server/__mocks__/pg.js

20 lines
236 B
JavaScript
Raw Normal View History

const pg = {}
// constructor
2021-03-16 05:26:46 +13:00
function Client() {}
2021-03-16 05:07:04 +13:00
Client.prototype.query = jest.fn(() => ({
rows: [
{
a: "string",
b: 1,
},
],
}))
Client.prototype.connect = jest.fn()
pg.Client = Client
module.exports = pg