Record R18 evidence and retain signed telemetry values in plots

This commit is contained in:
DCCONSTRUCTIONS
2026-09-08 01:53:30 +03:00
parent e57511f975
commit 6492ebcdee
3 changed files with 40 additions and 1 deletions
@@ -17,6 +17,7 @@ test('archive gaps break the plot instead of manufacturing zero or connecting mi
assert.equal(result.length,2);
assert.match(result[0],/^0.00,8.80 25.00,5.40$/);
assert.deepEqual(segments([null,NaN,null]),[]);
assert.notEqual(segments([-10,0,10])[0].split(' ')[0].split(',')[1],segments([-10,0,10])[0].split(' ')[1].split(',')[1]);
});
test('HTTP media framing survives every byte boundary and refuses oversized frames',()=>{
const output=[],receive=frames((kind,bytes)=>output.push([kind,[...bytes]]));