mirror of
https://github.com/feathersjs/feathers.git
synced 2025-12-08 19:46:22 +00:00
9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import { strict } from 'assert'
|
|
import { program } from '../src'
|
|
|
|
describe('cli tests', () => {
|
|
it('exports the program', async () => {
|
|
strict.ok(program)
|
|
})
|
|
})
|