mirror of
https://github.com/Dokploy/cli.git
synced 2026-06-19 14:15:20 +02:00
15 lines
393 B
TypeScript
15 lines
393 B
TypeScript
import {runCommand} from '@oclif/test'
|
|
import {expect} from 'chai'
|
|
|
|
describe('verify', () => {
|
|
it('runs verify cmd', async () => {
|
|
const {stdout} = await runCommand('verify')
|
|
expect(stdout).to.contain('hello world')
|
|
})
|
|
|
|
it('runs verify --name oclif', async () => {
|
|
const {stdout} = await runCommand('verify --name oclif')
|
|
expect(stdout).to.contain('hello oclif')
|
|
})
|
|
})
|