| 24 | |
| 25 | it("autoIncrement", () => { |
| 26 | class Table1 extends IndexedDbTable.make({ |
| 27 | name: "todo", |
| 28 | schema: Schema.Struct({ |
| 29 | id: IndexedDb.AutoIncrement, |
| 30 | title: Schema.String |
| 31 | }), |
| 32 | keyPath: "id", |
| 33 | autoIncrement: true |
| 34 | }) {} |
| 35 | |
| 36 | class Table2 extends IndexedDbTable.make({ |
| 37 | name: "todo", |
nothing calls this directly
no test coverage detected
searching dependent graphs…