Files
xOld_appRoboticsDriver/test/GCode.test.js
2025-12-27 20:24:47 +01:00

16 lines
297 B
JavaScript

const GCode = require('../robot/GCode.js');
test('G91 ist ein GCode Command', () => {
var x = GCode.containsCommand("G91") ;
expect(x).toBe(true);
});
test('G28 ist ein GCode Command', () => {
var x = GCode.containsCommand("G28") ;
expect(x).toBe(true);
});