Expect ts errors and remove litegraph test from ts exclude

This commit is contained in:
Benjamin Lu
2025-08-05 18:04:07 -04:00
parent 500c9c6631
commit a289f44263
20 changed files with 118 additions and 3 deletions

View File

@@ -84,6 +84,7 @@ describe('ExecutableNodeDTO Creation', () => {
// Test that wrapper calls original method
const args = ['arg1', 'arg2']
// @ts-expect-error TODO: Fix after merge - applyToGraph expects different arguments
dto.applyToGraph!(args[0], args[1])
expect(mockApplyToGraph).toHaveBeenCalledWith(args[0], args[1])