(uuid: string, matchesList: string[], excludeMatchesList: string[])
| 407 | }); |
| 408 | |
| 409 | const makeUrlMatcher = (uuid: string, matchesList: string[], excludeMatchesList: string[]) => { |
| 410 | const urlMatcher = new UrlMatch<string>(); |
| 411 | urlMatcher.addRules( |
| 412 | uuid, |
| 413 | extractUrlPatterns([...matchesList.map((e) => `@include ${e}`), ...excludeMatchesList.map((e) => `@exclude ${e}`)]) |
| 414 | ); |
| 415 | return { urlMatcher }; |
| 416 | }; |
| 417 | |
| 418 | describe.concurrent("UrlMatch-exclusion", () => { |
| 419 | it.concurrent("exclusion-1", () => { |
no test coverage detected