(table: unknown)
| 16 | public inserts: { table: unknown; input: unknown }[] = []; |
| 17 | |
| 18 | insert(table: unknown) { |
| 19 | return { |
| 20 | values: async (input: unknown) => { |
| 21 | this.inserts.push({ table, input }); |
| 22 | }, |
| 23 | }; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | beforeEach(() => { |
no test coverage detected