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