1
0
Fork 0
mirror of synced 2024-07-12 09:45:48 +12:00
budibase/packages/server/__mocks__/airtable.js

16 lines
233 B
JavaScript
Raw Normal View History

2021-03-12 22:29:27 +13:00
class Airtable {
constructor() {}
base() {
return () => ({
query: jest.fn(),
create: jest.fn(),
select: jest.fn(),
update: jest.fn(),
destroy: jest.fn(),
})
}
}
module.exports = Airtable