node-nmea/test/APBtest.js

11 lines
302 B
JavaScript
Raw Normal View History

2023-10-16 12:09:14 +08:00
var should = require('should');
describe('GGA ', function () {
it('parses', function () {
var msg = require("../nmea.js").parse("$GPAPB,A,A,0.10,R,N,V,V,011,M,DEST,011,M,011,M*3C");
msg.should.have.property('type', 'autopilot-b');
msg.should.have.property('sentence', 'APB');
});
});