mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
* [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
11 lines
318 B
TypeScript
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")
|
|
})
|
|
})
|