Files
cli/test/commands/hello/world.test.ts
2024-06-03 21:55:29 -06:00

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!')
})
})