mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-04 20:50:06 +00:00
13 lines
338 B
TypeScript
13 lines
338 B
TypeScript
import { describe, expect } from "vitest"
|
|
|
|
import { LGraphGroup } from "@/lib/litegraph/src/litegraph"
|
|
|
|
import { test } from "./testExtensions"
|
|
|
|
describe("LGraphGroup", () => {
|
|
test("serializes to the existing format", () => {
|
|
const link = new LGraphGroup("title", 929)
|
|
expect(link.serialize()).toMatchSnapshot("Basic")
|
|
})
|
|
})
|