(...args: Array<string>)
| 66 | // regular expressions. This little helper function helps us generate the |
| 67 | // expected strings for checking path patterns. |
| 68 | function joinForPattern(...args: Array<string>) { |
| 69 | return args.join(escapeStrForRegex(path.sep)); |
| 70 | } |
| 71 | |
| 72 | beforeEach(() => { |
| 73 | root = path.resolve('/'); |
no test coverage detected