8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import { MqttBinary } from './mqtt-binary';
|
|
|
|
describe('MqttBinary', () => {
|
|
it('should create an instance', () => {
|
|
expect(new MqttBinary()).toBeTruthy();
|
|
});
|
|
});
|