(url: string)
| 699 | |
| 700 | describe('with segments after', () => { |
| 701 | const recognizer = (url: string) => { |
| 702 | const config = [ |
| 703 | { |
| 704 | path: 'foo/**/bar', |
| 705 | component: ComponentA, |
| 706 | }, |
| 707 | ]; |
| 708 | return recognize(config, url); |
| 709 | }; |
| 710 | |
| 711 | it('matches a url with one segment for the wildcard', async () => { |
| 712 | const s = await recognizer('foo/a/bar'); |
no test coverage detected
searching dependent graphs…