The first arg passed to the most recent `.values(...)` call.
()
| 53 | |
| 54 | /** The first arg passed to the most recent `.values(...)` call. */ |
| 55 | function lastValuesRows() { |
| 56 | const calls = dbChainMockFns.values.mock.calls |
| 57 | return calls[calls.length - 1][0] as Array<Record<string, unknown>> |
| 58 | } |
| 59 | |
| 60 | describe('messages-store', () => { |
| 61 | beforeEach(() => { |
no outgoing calls
no test coverage detected