You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
message="This query was manually stopped before the analysis completed. Results may be partial."
62
+
title="Variant analysis canceled"
63
+
message="Variant analysis canceled before all queries were complete. Some repositories were not analyzed."
63
64
/>
64
65
)}
65
66
{overLimitRepositoryCount>0&&(
66
67
<Alert
67
68
type="warning"
68
-
title="Repository limit exceeded"
69
-
message={`The number of requested repositories exceeds the maximum number of repositories supported by multi-repository variant analysis. ${overLimitRepositoryCount}${overLimitRepositoryCount===1 ? 'repository was' : 'repositories were'} skipped.`}
69
+
title="Repository list too large"
70
+
message={`Repository list contains more than ${formatDecimal(scannedReposCount)} entries. Only the first ${formatDecimal(scannedReposCount)}repositories were processed.`}
70
71
/>
71
72
)}
72
73
{accessMismatchRepositoryCount>0&&(
73
74
<Alert
74
75
type="warning"
75
-
title="Access mismatch"
76
-
message={`${accessMismatchRepositoryCount}${accessMismatchRepositoryCount===1 ? 'repository is' : 'repositories are'}private, while the controller repository is public. ${accessMismatchRepositoryCount===1 ? 'This repository was' : 'These repositories were'}skipped.`}
76
+
title="Problem with controller repository"
77
+
message={`Publicly visible controller repository can't be used to analyze private repositories. ${formatDecimal(accessMismatchRepositoryCount)}${accessMismatchRepositoryCount===1 ? 'private repository was' : 'private repositories were'}not analyzed.`}
expect(screen.getByText('The number of requested repositories exceeds the maximum number of repositories supported by multi-repository variant analysis. 1 repository was skipped.')).toBeInTheDocument();
183
-
expect(screen.getByText('1 repository is private, while the controller repository is public. This repository was skipped.')).toBeInTheDocument();
185
+
expect(screen.getByText('Publicly visible controller repository can\'t be used to analyze private repositories. 1 private repository was not analyzed.')).toBeInTheDocument();
expect(screen.getByText('The number of requested repositories exceeds the maximum number of repositories supported by multi-repository variant analysis. 2 repositories were skipped.')).toBeInTheDocument();
201
-
expect(screen.getByText('2 repositories are private, while the controller repository is public. These repositories were skipped.')).toBeInTheDocument();
203
+
expect(screen.getByText('Repository list contains more than 3 entries. Only the first 3 repositories were processed.')).toBeInTheDocument();
204
+
expect(screen.getByText('Publicly visible controller repository can\'t be used to analyze private repositories. 2 private repositories were not analyzed.')).toBeInTheDocument();
0 commit comments