ktx/packages/context/src/index.test.ts

13 lines
312 B
TypeScript
Raw Permalink Normal View History

2026-05-10 23:12:26 +02:00
import { describe, expect, it } from 'vitest';
2026-05-10 23:51:24 +02:00
import { ktxContextPackageInfo } from './index.js';
2026-05-10 23:12:26 +02:00
2026-05-10 23:51:24 +02:00
describe('ktxContextPackageInfo', () => {
2026-05-10 23:12:26 +02:00
it('identifies the context package', () => {
2026-05-10 23:51:24 +02:00
expect(ktxContextPackageInfo).toEqual({
name: '@ktx/context',
2026-05-10 23:12:26 +02:00
version: '0.0.0-private',
});
});
});