speed log

This commit is contained in:
ChK
2026-04-20 16:23:38 +02:00
parent 657f460cf2
commit 2af6432a44
6 changed files with 171 additions and 41 deletions

View File

@@ -77,7 +77,7 @@ describe('GCode Speed Tests', () => {
});
test('G1 without Feedrate - should use default f200', () => {
test('G1 without Feedrate - should use default f1000', () => {
const L1 = 300;
const L2 = 300;
const L3 = 20;
@@ -93,8 +93,8 @@ describe('GCode Speed Tests', () => {
// Check default feedrate
expect(telnetSender1.tSocket.written).toContain('G1');
expect(telnetSender1.tSocket.written).toContain('f200');
expect(telnetSender1.tSocket.written).toMatch(/f200\.00/);
expect(telnetSender1.tSocket.written).toContain('f1000');
expect(telnetSender1.tSocket.written).toMatch(/f1000\.00/);
});
test('G1 with different Feedrate F500 - multiple senders', () => {