| 1499 | |
| 1500 | const found = yield* repo.find(id) |
| 1501 | expect(Option.isSome(found)).toBe(true) |
| 1502 | expect(Option.getOrThrow(found).name).toBe("test preconfig") |
| 1503 | expect(Option.getOrThrow(found).id).toEqual(id) |
| 1504 | |
| 1505 | const notFound = yield* repo.find( |
| 1506 | new PreconfigurationId({ |