(
projectConfigs: Array<Config.ProjectConfig>,
opts: {
ignoreProjects: Array<string> | undefined;
selectProjects: Array<string> | undefined;
},
)
| 10 | import getProjectDisplayName from './getProjectDisplayName'; |
| 11 | |
| 12 | export default function getSelectProjectsMessage( |
| 13 | projectConfigs: Array<Config.ProjectConfig>, |
| 14 | opts: { |
| 15 | ignoreProjects: Array<string> | undefined; |
| 16 | selectProjects: Array<string> | undefined; |
| 17 | }, |
| 18 | ): string { |
| 19 | if (projectConfigs.length === 0) { |
| 20 | return getNoSelectionWarning(opts); |
| 21 | } |
| 22 | return getProjectsRunningMessage(projectConfigs); |
| 23 | } |
| 24 | |
| 25 | function getNoSelectionWarning(opts: { |
| 26 | ignoreProjects: Array<string> | undefined; |
no test coverage detected