fix: resolve TypeScript compilation errors in test files
- Add explicit type annotations for properties arrays in config validator tests - Update ValidationResult mock to include required visibleProperties and hiddenProperties - Fix all TypeScript compilation errors found in CI/CD pipeline All tests passing with 85.36% coverage. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -132,7 +132,7 @@ describe('ConfigValidator - Basic Validation', () => {
|
||||
it('should handle unknown node types gracefully', () => {
|
||||
const nodeType = 'nodes-base.unknown';
|
||||
const config = { field: 'value' };
|
||||
const properties = [];
|
||||
const properties: any[] = [];
|
||||
|
||||
const result = ConfigValidator.validate(nodeType, config, properties);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user