mirror of
https://github.com/Dokploy/cli.git
synced 2026-07-03 21:15:22 +02:00
feat: add info list project
This commit is contained in:
14
test/commands/project/info.test.ts
Normal file
14
test/commands/project/info.test.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('project:info', () => {
|
||||
it('runs project:info cmd', async () => {
|
||||
const {stdout} = await runCommand('project:info')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs project:info --name oclif', async () => {
|
||||
const {stdout} = await runCommand('project:info --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user