TESTNODE_ ♾️Mixlab
An internal debug node the pack left in the public menu
- ANY
- *
Worth being upfront about this one: TESTNODE_ lives in a category literally called "Test," and its schema is about as generic as a node gets - it accepts anything (ANY, typed as the wildcard *) and returns anything (a wildcard list). There's no description on the node itself, no dedicated section for it in the README, and nothing in the pack's changelog naming it. The honest read is that this is a leftover development or debugging utility the author uses while building the pack, shipped in the public node list rather than hidden from it - not a feature built for end users the way ChatGPTOpenAI or RembgNode_Mix are.
That doesn't make it useless, just niche. A wildcard-in, wildcard-out node that's marked as an output node (meaning it runs for its own sake rather than needing something downstream to consume it) is a handy thing to have around for exactly one reason: it forces a branch of your graph to actually execute. ComfyUI normally prunes dead-end nodes with no consumer as unused; a node marked to run regardless is a cheap way to anchor a chain you want to verify actually fires - plug something into TESTNODE_, run the graph, and confirm that branch executed rather than silently getting skipped. Beyond that, don't expect it to do any real processing - nothing in its schema suggests it transforms the value it receives, only that it accepts one and re-emits it.
Given the blank documentation, treat anything beyond "it takes anything and passes something back out, and it's marked to always run" as unverified. If you're building a real workflow rather than poking at the pack's internals, this almost certainly isn't the node you actually want - for debugging what's flowing through a wire, most packs (including this one's own ecosystem neighbors) have purpose-built print/preview nodes that are far better documented and give you an actual readable value in the console or on the canvas, rather than a wildcard pass-through with no description.
Install is the pack-wide standard, same as every other node here:
cd ComfyUI/custom_nodes
git clone https://github.com/shadowcz007/comfyui-mixlab-nodes.git
cd comfyui-mixlab-nodes
install.bat
or via ComfyUI Manager (search "comfyui-mixlab-nodes"), or pip3 install -r requirements.txt in a venv. No model download needed.
If you've landed on this page because TESTNODE_ showed up unexpectedly in your node search results, that's expected - it's part of the same node registration as every other Mixlab node, just one that was never meant to be a headline feature. There's genuinely nothing to troubleshoot beyond "does it accept my input and does the graph run" - if either of those fails, that's more likely a pack-load or installation issue affecting the whole plugin (check your ComfyUI console for errors on startup) than something specific to this one test node.
Inputs (1)
| Name | Type | Default | Description |
|---|---|---|---|
| ANY | * | — |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| * | * | — |