mirror of
https://github.com/Dokploy/cli.git
synced 2026-06-15 20:25:22 +02:00
10 lines
260 B
TypeScript
10 lines
260 B
TypeScript
import {runCommand} from '@oclif/test'
|
|
import {expect} from 'chai'
|
|
|
|
describe('hello', () => {
|
|
it('runs hello', async () => {
|
|
const {stdout} = await runCommand('hello friend --from oclif')
|
|
expect(stdout).to.contain('hello friend from oclif!')
|
|
})
|
|
})
|