Add TypeScript integrations package

This commit is contained in:
2026-05-05 12:01:30 +00:00
commit e91176fb9b
5889 changed files with 53433 additions and 0 deletions
@@ -0,0 +1,11 @@
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();