"...git@developer.sourcefind.cn:chenpangpang/diffusers.git" did not exist on "a35e72b0325cc0196bd4aa56c79d14e3b6eb6516"
Commit 080ef75c authored by pythongosssss's avatar pythongosssss
Browse files

fix

parent 9aaf368a
...@@ -405,9 +405,14 @@ describe("group node", () => { ...@@ -405,9 +405,14 @@ describe("group node", () => {
group1.outputs.LATENT.connectTo(group2.inputs.LATENT); group1.outputs.LATENT.connectTo(group2.inputs.LATENT);
const decode = ez.VAEDecode(group2.outputs.LATENT, group2.outputs.VAE); const decode = ez.VAEDecode(group2.outputs.LATENT, group2.outputs.VAE);
ez.PreviewImage(decode.outputs[0]); const preview = ez.PreviewImage(decode.outputs[0]);
expect((await graph.toPrompt()).output).toEqual({}); expect((await graph.toPrompt()).output).toEqual({
[latent.id]: { inputs: { width: 512, height: 512, batch_size: 1 }, class_type: "EmptyLatentImage" },
[vae.id]: { inputs: { vae_name: "vae1.safetensors" }, class_type: "VAELoader" },
[decode.id]: { inputs: { samples: [latent.id + "", 0], vae: [vae.id + "", 0] }, class_type: "VAEDecode" },
[preview.id]: { inputs: { images: [decode.id + "", 0] }, class_type: "PreviewImage" },
});
}); });
test("displays generated image on group node", async () => { test("displays generated image on group node", async () => {
const { ez, graph, app } = await start(); const { ez, graph, app } = await start();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment