mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 06:47:33 +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
24 lines
278 B
Plaintext
24 lines
278 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`LLink > matches previous snapshot > Basic 1`] = `
|
|
[
|
|
1,
|
|
4,
|
|
2,
|
|
5,
|
|
3,
|
|
"float",
|
|
]
|
|
`;
|
|
|
|
exports[`LLink > serializes to the previous snapshot > Basic 1`] = `
|
|
[
|
|
1,
|
|
4,
|
|
2,
|
|
5,
|
|
3,
|
|
"float",
|
|
]
|
|
`;
|