UNPKG

@homebridge-plugins/homebridge-air

Version:

The AirNow plugin allows you to monitor the current AirQuality for your Zip Code from HomeKit and Siri.

13 lines 541 B
import { describe, expect, it, vi } from 'vitest'; import registerPlatform from '../index.js'; import { PLATFORM_NAME, PLUGIN_NAME } from '../settings.js'; describe('registerPlatform', () => { it('should register the platform with homebridge using a platform proxy', () => { const api = { registerPlatform: vi.fn(), }; registerPlatform(api); expect(api.registerPlatform).toHaveBeenCalledWith(PLUGIN_NAME, PLATFORM_NAME, expect.any(Function)); }); }); //# sourceMappingURL=index.test.js.map