UNPKG

serial-servo-control

Version:

Serial Servo Controller (SSC)

14 lines (11 loc) 293 B
describe('Robot', function() { const {Robot} = require('../..'); let robot; beforeEach(() => { const commands = [{name: 'something'}]; robot = new Robot({commands}); }); it('should be able to do something', function() { expect(robot._options).not.toBe(null); }); });