(projectKind?: ProjectConfig["projectKind"])
| 118 | } |
| 119 | |
| 120 | function createProjectConfig(projectKind?: ProjectConfig["projectKind"]): ProjectConfig { |
| 121 | return { |
| 122 | workspaces: [], |
| 123 | ...(projectKind === undefined ? {} : { projectKind }), |
| 124 | }; |
| 125 | } |
| 126 | |
| 127 | describe("shouldExposeLaunchProject", () => { |
| 128 | test("returns true when only system projects exist", () => { |