(path: string)
| 857 | }; |
| 858 | |
| 859 | const sqliteWalSize = (path: string): number => |
| 860 | existsSync(`${path}-wal`) ? statSync(`${path}-wal`).size : 0; |
| 861 | |
| 862 | const assertSqliteWalEmptyOrAbsent = (path: string): void => { |
| 863 | expect(sqliteWalSize(path)).toBe(0); |
no outgoing calls
no test coverage detected