test: remove any from litegraphUtil.test.ts

- Replace widgetValues: any[] with unknown[]
This commit is contained in:
Johnpaul
2026-01-21 19:14:55 +01:00
parent 092e08df26
commit 8574af95ea

View File

@@ -56,7 +56,7 @@ describe('migrateWidgetsValues', () => {
it('should handle empty widgets and values', () => {
const inputDefs: Record<string, InputSpec> = {}
const widgets: IWidget[] = []
const widgetValues: any[] = []
const widgetValues: unknown[] = []
const result = migrateWidgetsValues(inputDefs, widgets, widgetValues)
expect(result).toEqual([])