CHANGE: seperated mqtt device

This commit is contained in:
2024-08-02 07:09:46 +02:00
parent f6fb4f6b61
commit e6a49d55e2
2 changed files with 59 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import { MqttDevice } from './mqtt-device';
describe('MqttDevice', () => {
it('should create an instance', () => {
expect(new MqttDevice()).toBeTruthy();
});
});