Skip to content

Commit 90696c9

Browse files
committed
refactor: rename runability to running-app-checks
Renames the label as it's currently a bit confusing/ambiguous when shown next to the `functionality` "rubric".
1 parent 8d509c6 commit 90696c9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

runner/ratings/built-in-ratings/no-runtime-errors-rating.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const noRuntimeExceptionsRating: PerBuildRating = {
77
description: "Ensures the app doesn't have runtime exceptions.",
88
kind: RatingKind.PER_BUILD,
99
category: RatingCategory.HIGH_IMPACT,
10-
groupingLabels: ['functionality', 'runability'],
10+
groupingLabels: ['functionality', 'running-app-checks'],
1111
scoreReduction: '50%',
1212
id: 'common-no-runtime-errors',
1313
rate: ({buildResult, serveResult}) => ({

runner/ratings/built-in-ratings/user-journeys-rating.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const userJourneysRating: PerBuildRating = {
77
description: 'Ensures that all User Journeys are working in the generated app',
88
kind: RatingKind.PER_BUILD,
99
category: RatingCategory.MEDIUM_IMPACT,
10-
groupingLabels: ['functionality', 'runability', 'interaction-testing'],
10+
groupingLabels: ['functionality', 'running-app-checks', 'interaction-testing'],
1111
scoreReduction: '30%',
1212
rate: ({serveResult}) => {
1313
if (serveResult === null || serveResult.userJourneyAgentOutput === null) {

runner/ratings/built-in-ratings/visual-appearance-rating.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export const visualAppearanceRating: LLMBasedRating = {
99
name: 'UI & Visual appearance (LLM-Rated)',
1010
description: 'Rates the app based on its visuals (UI visuals and feature completeness).',
1111
category: RatingCategory.MEDIUM_IMPACT,
12-
groupingLabels: ['llm-judge', 'visual-appearance', 'runability'],
12+
groupingLabels: ['llm-judge', 'visual-appearance', 'running-app-checks'],
1313
scoreReduction: '30%',
1414
id: 'common-autorater-visuals',
1515
rate: async ctx => {

0 commit comments

Comments
 (0)