mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-01-31 13:29:55 +00:00
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.
13 lines
320 B
TypeScript
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")
|
|
})
|
|
})
|