Add native Z-Wave JS integration
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
import { expect, tap } from '@git.zone/tstest/tapbundle';
|
||||
import { createZwaveJsDiscoveryDescriptor } from '../../ts/integrations/zwave_js/index.js';
|
||||
|
||||
tap.test('matches Z-Wave JS Server mDNS records', async () => {
|
||||
const descriptor = createZwaveJsDiscoveryDescriptor();
|
||||
const matcher = descriptor.getMatchers()[0];
|
||||
const result = await matcher.matches({
|
||||
type: '_zwave-js-server._tcp.local.',
|
||||
name: 'Z-Wave JS._zwave-js-server._tcp.local.',
|
||||
host: 'zwave.local',
|
||||
port: 3000,
|
||||
}, {});
|
||||
expect(result.matched).toBeTrue();
|
||||
expect(result.candidate?.host).toEqual('zwave.local');
|
||||
expect(result.candidate?.metadata?.url).toEqual('ws://zwave.local:3000');
|
||||
});
|
||||
|
||||
export default tap.start();
|
||||
Reference in New Issue
Block a user