Add Vitest coverage for erasure lanes, fleet evolution UI, and spread routes.
Some checks failed
CI Docker Mining Proof / Linux agent hashrate proof (push) Has been cancelled

Cover Path Tracer RS lane hints, Calibrate erasure toggle, fleet role chips, atlas skips panel, and erasure_lanes help copy.
This commit is contained in:
AetherForge
2026-06-07 06:21:11 -07:00
parent aa6b8a3142
commit 72d0e6ac19
5 changed files with 94 additions and 0 deletions

View File

@@ -179,4 +179,11 @@ describe('FIELD_HELP', () => {
expect(FIELD_HELP.com_hijack_persist).toContain('CLSID');
expect(FIELD_HELP.linux_lotl_mode).toContain('systemd-run');
});
it('erasure_lanes describes ReedSolomon shard encoding foundation', () => {
expect(FIELD_HELP.erasure_lanes).toMatch(/Reed.?Solomon/i);
expect(FIELD_HELP.erasure_lanes).toContain('erasure_lanes_enabled');
expect(FIELD_HELP.erasure_lanes).toMatch(/dns_txt|bits_curl|do_peer|wsus_cache_peer/);
expect(FIELD_HELP.erasure_lanes).toMatch(/Foundation only/i);
});
});