@homebridge-plugins/homebridge-roomba
Version:
homebridge-plugin for Roomba devices
11 lines • 428 B
JavaScript
import { describe, expect, it } from 'vitest';
import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js';
describe('settings', () => {
it('should have the correct platform name', () => {
expect(PLATFORM_NAME).toBe('Roomba');
});
it('should have the correct plugin name', () => {
expect(PLUGIN_NAME).toBe('@homebridge-plugins/homebridge-roomba');
});
});
//# sourceMappingURL=settings.test.js.map