(re: string, glob: string)
| 10 | */ |
| 11 | describe.concurrent("regexToGlob - comprehensive test suite (regrouped & commented)", () => { |
| 12 | const ok = (re: string, glob: string) => { |
| 13 | const got = regexToGlob(re); |
| 14 | expect(got).not.toBeNull(); |
| 15 | expect(got).toBe(glob); |
| 16 | }; |
| 17 | const bad = (re: string) => expect(regexToGlob(re)).toBeNull(); |
| 18 | |
| 19 | // ──────────────────────────────────────────────────────────────────────────── |
no test coverage detected