10 lines
250 B
TypeScript
10 lines
250 B
TypeScript
import {runCommand} from '@oclif/test'
|
|
import {expect} from 'chai'
|
|
|
|
describe('hello world', () => {
|
|
it('runs hello world cmd', async () => {
|
|
const {stdout} = await runCommand('hello world')
|
|
expect(stdout).to.contain('hello world!')
|
|
})
|
|
})
|