()
| 6 | describe('integrity checks', function () { |
| 7 | beforeEach(function () { |
| 8 | let func = () => {}; |
| 9 | this.useFunc = fn => { func = fn; }; |
| 10 | this.db = new Database(util.next()); |
| 11 | this.db.prepare("CREATE TABLE entries (a TEXT, b INTEGER, c REAL, d BLOB, e TEXT)").run(); |