node-switchbot
Version:
The node-switchbot is a Node.js module which allows you to control your Switchbot Devices through Bluetooth (BLE).
14 lines • 492 B
JavaScript
import { describe, expect, it } from 'vitest';
import * as index from './index.js';
describe('index module exports', () => {
it('should export switchbot-ble', () => {
expect(index.SwitchBotBLE).toBeDefined();
});
it('should export switchbot-openapi', () => {
expect(index.SwitchBotOpenAPI).toBeDefined();
});
it('should export SwitchbotDevice', () => {
expect(index.SwitchbotDevice).toBeDefined();
});
});
//# sourceMappingURL=index.test.js.map