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