(writes: DataDependencies.DataDependencies)
| 394 | const invalidatedBy = (writes: DataDependencies.DataDependencies) => |
| 395 | [...queryReads] |
| 396 | .filter(([, reads]) => DataDependencies.intersects(reads, writes)) |
| 397 | .map(([key]) => key) |
| 398 | |
| 399 | // Run the query through the real client; register its forwarded reads under its key. |
| 400 | const query = yield* withDependencyCapture(client.GetRepoCount.handler()) |
| 401 | expect(Exit.isSuccess(query.result)).toBe(true) |
| 402 | queryReads.set("GetRepoCount", query.dependencies.reads) |
no test coverage detected
searching dependent graphs…