Files

12 lines
473 B
TypeScript
Raw Permalink Normal View History

2026-05-05 12:01:30 +00:00
import { expect, tap } from '@git.zone/tstest/tapbundle';
import { DiscoveryDescriptor } from '../../ts/core/index.js';
tap.test('keeps probes, matchers, and validators inspectable', async () => {
const descriptor = new DiscoveryDescriptor({ integrationDomain: 'test', displayName: 'Test' });
expect(descriptor.getProbes()).toEqual([]);
expect(descriptor.getMatchers()).toEqual([]);
expect(descriptor.getValidators()).toEqual([]);
});
export default tap.start();