speed log
This commit is contained in:
@@ -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', () => {
|
||||
|
||||
Reference in New Issue
Block a user