(path: string)
| 30 | } |
| 31 | |
| 32 | export function isPathInsideFlutterProject(path: string): boolean { |
| 33 | // TODO(dantup): This can be called quite a lot when discovering tests, so consider |
| 34 | // maintaining a model for the workspace. |
| 35 | const projectRoot = locateBestProjectRoot(path); |
| 36 | if (!projectRoot) |
| 37 | return false; |
| 38 | |
| 39 | return isFlutterProjectFolder(projectRoot); |
| 40 | } |
| 41 | |
| 42 | export function insertSessionName(args: { name: string }, logPath: string | undefined) { |
| 43 | return logPath |
no test coverage detected