import { describe, expect } from 'vitest' import { LGraphGroup } from '@/lib/litegraph/src/litegraph' import { test } from './fixtures/testExtensions' describe('LGraphGroup', () => { test('serializes to the existing format', () => { const link = new LGraphGroup('title', 929) expect(link.serialize()).toMatchSnapshot('Basic') }) })