mirror of
https://github.com/Dokploy/cli.git
synced 2026-06-27 10:05:26 +02:00
feat: add verify and authenticate command
This commit is contained in:
14
test/commands/verify.test.ts
Normal file
14
test/commands/verify.test.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
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')
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user