Files
appRobotDriver/test/GCode.test.js
2026-02-01 13:25:03 +01:00

16 lines
297 B
JavaScript
Executable File

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);
});