| 34 | }) {} |
| 35 | |
| 36 | class Table2 extends IndexedDbTable.make({ |
| 37 | name: "todo", |
| 38 | schema: Schema.Struct({ |
| 39 | id: IndexedDb.AutoIncrement, |
| 40 | title: Schema.String |
| 41 | }), |
| 42 | keyPath: "id", |
| 43 | autoIncrement: false |
| 44 | }) {} |
| 45 | |
| 46 | assert.equal(Table1.tableName, "todo") |
| 47 | assert.equal(Table1.autoIncrement, true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…