(path: string | undefined)
| 90 | } |
| 91 | |
| 92 | export function isTestFileOrFolder(path: string | undefined): boolean { |
| 93 | return !!path && (isTestFile(path) || isTestFolder(path)); |
| 94 | } |
| 95 | |
| 96 | export function isTestFile(file: string): boolean { |
| 97 | // To be a test, you must be _test.dart AND inside a test folder (unless allowTestsOutsideTestFolder). |
no test coverage detected