(mode)
| 610 | // this test is a regression test for that scenario |
| 611 | |
| 612 | function modeToString(mode) { |
| 613 | if (mode === constants.SQLITE_CHANGESET_ABORT) return 'SQLITE_CHANGESET_ABORT'; |
| 614 | if (mode === constants.SQLITE_CHANGESET_OMIT) return 'SQLITE_CHANGESET_OMIT'; |
| 615 | } |
| 616 | |
| 617 | const dbPath = nextDb(); |
| 618 | const db1 = new DatabaseSync(dbPath); |
no outgoing calls
no test coverage detected
searching dependent graphs…