Files
mqtt_creator/src/app/_models/mqtt-device.spec.ts
2024-08-02 07:09:46 +02:00

8 lines
171 B
TypeScript

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