Skip to content

Commit 5c473d5

Browse files
committed
fix: Add missing keywords threshold in linter test
TypeScript build was failing due to incomplete thresholds object. The LintConfig type requires both size and keywords thresholds, but the test was only providing size. Fixed by adding the missing keywords.minAccuracy property.
1 parent 6dc6c3a commit 5c473d5

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

plugins/ui5/skill-lint/tests/core/linter.test.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,9 @@ describe('SkillLinter', () => {
196196
size: {
197197
maxLines: 1,
198198
maxTokens: 10,
199+
},
200+
keywords: {
201+
minAccuracy: 90,
199202
}
200203
}
201204
});

0 commit comments

Comments
 (0)