From 8574af95eae43060022c10d708a91e6d777e4a21 Mon Sep 17 00:00:00 2001 From: Johnpaul Date: Wed, 21 Jan 2026 19:14:55 +0100 Subject: [PATCH] test: remove any from litegraphUtil.test.ts - Replace widgetValues: any[] with unknown[] --- src/utils/litegraphUtil.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/litegraphUtil.test.ts b/src/utils/litegraphUtil.test.ts index 36a6692ee..4c21d2569 100644 --- a/src/utils/litegraphUtil.test.ts +++ b/src/utils/litegraphUtil.test.ts @@ -56,7 +56,7 @@ describe('migrateWidgetsValues', () => { it('should handle empty widgets and values', () => { const inputDefs: Record = {} const widgets: IWidget[] = [] - const widgetValues: any[] = [] + const widgetValues: unknown[] = [] const result = migrateWidgetsValues(inputDefs, widgets, widgetValues) expect(result).toEqual([])