()
| 70 | type LibraryType = Book | Author | Visit | Cursor |
| 71 | |
| 72 | const schema = () => |
| 73 | StoreSchema.create<LibraryType>({ |
| 74 | book: Book, |
| 75 | author: Author, |
| 76 | visit: Visit, |
| 77 | cursor: Cursor, |
| 78 | }) |
| 79 | |
| 80 | describe('Store: reading and writing (S)', () => { |
| 81 | let store: Store<LibraryType> |
no test coverage detected
searching dependent graphs…