node-nmea/test/RDIDtest.js

11 lines
274 B
JavaScript
Raw Permalink Normal View History

2023-10-16 12:09:14 +08:00
var should = require('should');
describe('RDID ', function () {
it('parses', function () {
var msg = require("../nmea.js").parse("$PRDID,-1.31,7.81,47.31*68");
msg.should.have.property('type', 'gyro');
msg.should.have.property('sentence', 'RDID');
});
});