Files
ComfyUI_frontend/test/LGraphGroup.test.ts
filtered f3b51a534e [Test] Standardise unit test infrastructure (#572)
* [Test] Revert custom name for test context

- Removes "lgTest", replaces with default "test"

* nit - Rename test extensions file

* Split test graphs out to separate file
2025-02-24 01:56:22 +00:00

11 lines
318 B
TypeScript

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