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