Helper to create a project config for a path with no workspaces
(path: string)
| 24 | /** Helper to create a project config for a path with no workspaces */ |
| 25 | |
| 26 | function projectWithNoWorkspaces(path: string): [string, ProjectConfig] { |
| 27 | return [path, { workspaces: [] }]; |
| 28 | } |
| 29 | |
| 30 | describeIntegration("Git Init Banner (UI)", () => { |
| 31 | test("shows git init banner when project is not a git repository", async () => { |