mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-07 07:55:13 +02:00
12 lines
312 B
TypeScript
12 lines
312 B
TypeScript
import { describe, expect, it } from 'vitest';
|
|
|
|
import { ktxContextPackageInfo } from './index.js';
|
|
|
|
describe('ktxContextPackageInfo', () => {
|
|
it('identifies the context package', () => {
|
|
expect(ktxContextPackageInfo).toEqual({
|
|
name: '@ktx/context',
|
|
version: '0.0.0-private',
|
|
});
|
|
});
|
|
});
|