mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-02 14:27:40 +00:00
* Replace test framework: jest -> vitest * nit - remove deprecated npm scripts * Add vitest config * Add a few basic tests * Update actions with vitest params * Add correct expectations * Remove jest config
18 lines
286 B
Plaintext
18 lines
286 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`LGraphGroup > serializes to the existing format > Basic 1`] = `
|
|
{
|
|
"bounding": [
|
|
10,
|
|
10,
|
|
140,
|
|
80,
|
|
],
|
|
"color": "#3f789e",
|
|
"flags": {},
|
|
"font_size": 24,
|
|
"id": 929,
|
|
"title": "title",
|
|
}
|
|
`;
|