test: add missing tests for cluster edges, handles, colors, and none check method

- backend: cluster edge creation with source/target handles, handle persistence through PATCH
- frontend: cluster color in edgeColors, onConnect preserves sourceHandle/targetHandle
This commit is contained in:
Pouzor
2026-03-08 11:41:09 +01:00
parent 8de4f9b32d
commit e306cd7b49
3 changed files with 50 additions and 1 deletions
@@ -2,7 +2,7 @@ import { describe, it, expect } from 'vitest'
import { EDGE_DEFAULT_COLORS } from '../edgeColors'
import type { EdgeType } from '@/types'
const EDGE_TYPES: EdgeType[] = ['ethernet', 'wifi', 'iot', 'vlan', 'virtual']
const EDGE_TYPES: EdgeType[] = ['ethernet', 'wifi', 'iot', 'vlan', 'virtual', 'cluster']
describe('EDGE_DEFAULT_COLORS', () => {
it('has an entry for every EdgeType', () => {
@@ -32,4 +32,8 @@ describe('EDGE_DEFAULT_COLORS', () => {
it('virtual default is muted gray', () => {
expect(EDGE_DEFAULT_COLORS.virtual).toBe('#8b949e')
})
it('cluster default is proxmox orange', () => {
expect(EDGE_DEFAULT_COLORS.cluster).toBe('#ff6e00')
})
})