| 132 | }); |
| 133 | |
| 134 | interface RequestForArgs { |
| 135 | matches: |
| 136 | | { |
| 137 | url: (url: URL) => boolean; |
| 138 | } |
| 139 | | { |
| 140 | pathname: string; |
| 141 | }; |
| 142 | when?: { |
| 143 | pageLoads: { |
| 144 | url: string; |
| 145 | }; |
| 146 | }; |
| 147 | } |
| 148 | |
| 149 | export function makesRequestIn(page: Page, args: RequestForArgs) { |
| 150 | const { matches, when } = args; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…