@homebridge-plugins/homebridge-air
Version:
The AirNow plugin allows you to monitor the current AirQuality for your Zip Code from HomeKit and Siri.
14 lines • 552 B
JavaScript
import { describe, expect, it, vi } from 'vitest';
import registerPlatform from './index.js';
import { AirPlatform } from './platform.js';
import { PLATFORM_NAME, PLUGIN_NAME } from './settings.js';
describe('registerPlatform', () => {
it('should register the platform with homebridge', () => {
const api = {
registerPlatform: vi.fn(),
};
registerPlatform(api);
expect(api.registerPlatform).toHaveBeenCalledWith(PLUGIN_NAME, PLATFORM_NAME, AirPlatform);
});
});
//# sourceMappingURL=index.test.js.map