index.test.ts 198 B

1234567
  1. import { expect, test } from 'vitest';
  2. import { createProgram } from '../src';
  3. test('it exports a function to create a CLI program', () => {
  4. expect(typeof createProgram).toBe('function');
  5. });