redmine-time-manager/test/commands/hello/world.test.ts
Pavel Gnedov 380d4c02a8 init
2022-01-30 00:55:41 +07:00

10 lines
218 B
TypeScript

import {expect, test} from '@oclif/test'
describe('hello world', () => {
test
.stdout()
.command(['hello:world'])
.it('runs hello world cmd', ctx => {
expect(ctx.stdout).to.contain('hello world!')
})
})