Files
ComfyUI_frontend/test/LGraphGroup.test.ts
filtered 6224d2dc06 [Cleanup] Update ESLint rules with stricter auto-fixes (#614)
Stylistic plugin falls short in a few areas when it comes to consistent
lists and chaining. Replaced some key rules with antfu's personal
variants.

`eslint` can now be run repo-wide without params.
2025-02-26 11:12:03 +00:00

13 lines
320 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")
})
})