mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-10 07:30:08 +00:00
[Refactor] Split NodeSlot out to separate files (#960)
Split files only; no code changes. New files moved to `/node`.
This commit is contained in:
@@ -2,7 +2,8 @@ import { describe, expect } from "vitest"
|
||||
|
||||
import { LGraphNode, LiteGraph } from "@/litegraph"
|
||||
import { LGraph } from "@/litegraph"
|
||||
import { NodeInputSlot, NodeOutputSlot } from "@/NodeSlot"
|
||||
import { NodeInputSlot } from "@/node/NodeInputSlot"
|
||||
import { NodeOutputSlot } from "@/node/NodeOutputSlot"
|
||||
|
||||
import { test } from "./testExtensions"
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { describe, expect, it } from "vitest"
|
||||
|
||||
import { INodeInputSlot, INodeOutputSlot } from "@/interfaces"
|
||||
import { inputAsSerialisable, outputAsSerialisable } from "@/NodeSlot"
|
||||
import { inputAsSerialisable, outputAsSerialisable } from "@/node/slotUtils"
|
||||
|
||||
describe("NodeSlot", () => {
|
||||
describe("inputAsSerialisable", () => {
|
||||
|
||||
Reference in New Issue
Block a user