mirror of
https://github.com/Dokploy/cli.git
synced 2026-06-15 20:25:22 +02:00
remove
This commit is contained in:
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('app:create', () => {
|
||||
it('runs app:create cmd', async () => {
|
||||
const {stdout} = await runCommand('app:create')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs app:create --name oclif', async () => {
|
||||
const {stdout} = await runCommand('app:create --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('app:delete', () => {
|
||||
it('runs app:delete cmd', async () => {
|
||||
const {stdout} = await runCommand('app:delete')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs app:delete --name oclif', async () => {
|
||||
const {stdout} = await runCommand('app:delete --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('authenticate', () => {
|
||||
it('runs authenticate cmd', async () => {
|
||||
const {stdout} = await runCommand('authenticate')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs authenticate --name oclif', async () => {
|
||||
const {stdout} = await runCommand('authenticate --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('check-server', () => {
|
||||
it('runs check-server cmd', async () => {
|
||||
const {stdout} = await runCommand('check-server')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs check-server --name oclif', async () => {
|
||||
const {stdout} = await runCommand('check-server --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:create', () => {
|
||||
it('runs database:create cmd', async () => {
|
||||
const {stdout} = await runCommand('database:create')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:create --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:create --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:mariadb:create', () => {
|
||||
it('runs database:mariadb:create cmd', async () => {
|
||||
const {stdout} = await runCommand('database:mariadb:create')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:mariadb:create --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:mariadb:create --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:mariadb:delete', () => {
|
||||
it('runs database:mariadb:delete cmd', async () => {
|
||||
const {stdout} = await runCommand('database:mariadb:delete')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:mariadb:delete --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:mariadb:delete --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:mongo:create', () => {
|
||||
it('runs database:mongo:create cmd', async () => {
|
||||
const {stdout} = await runCommand('database:mongo:create')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:mongo:create --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:mongo:create --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:mongo:delete', () => {
|
||||
it('runs database:mongo:delete cmd', async () => {
|
||||
const {stdout} = await runCommand('database:mongo:delete')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:mongo:delete --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:mongo:delete --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:mysql:create', () => {
|
||||
it('runs database:mysql:create cmd', async () => {
|
||||
const {stdout} = await runCommand('database:mysql:create')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:mysql:create --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:mysql:create --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:mysql:delete', () => {
|
||||
it('runs database:mysql:delete cmd', async () => {
|
||||
const {stdout} = await runCommand('database:mysql:delete')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:mysql:delete --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:mysql:delete --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:postgres:create', () => {
|
||||
it('runs database:postgres:create cmd', async () => {
|
||||
const {stdout} = await runCommand('database:postgres:create')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:postgres:create --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:postgres:create --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:postgres:delete', () => {
|
||||
it('runs database:postgres:delete cmd', async () => {
|
||||
const {stdout} = await runCommand('database:postgres:delete')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:postgres:delete --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:postgres:delete --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:redis:create', () => {
|
||||
it('runs database:redis:create cmd', async () => {
|
||||
const {stdout} = await runCommand('database:redis:create')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:redis:create --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:redis:create --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('database:redis:delete', () => {
|
||||
it('runs database:redis:delete cmd', async () => {
|
||||
const {stdout} = await runCommand('database:redis:delete')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs database:redis:delete --name oclif', async () => {
|
||||
const {stdout} = await runCommand('database:redis:delete --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,9 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('hello', () => {
|
||||
it('runs hello', async () => {
|
||||
const {stdout} = await runCommand('hello friend --from oclif')
|
||||
expect(stdout).to.contain('hello friend from oclif!')
|
||||
})
|
||||
})
|
||||
@@ -1,9 +0,0 @@
|
||||
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!')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('project:create', () => {
|
||||
it('runs project:create cmd', async () => {
|
||||
const {stdout} = await runCommand('project:create')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs project:create --name oclif', async () => {
|
||||
const {stdout} = await runCommand('project:create --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
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')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
import {runCommand} from '@oclif/test'
|
||||
import {expect} from 'chai'
|
||||
|
||||
describe('project:list', () => {
|
||||
it('runs project:list cmd', async () => {
|
||||
const {stdout} = await runCommand('project:list')
|
||||
expect(stdout).to.contain('hello world')
|
||||
})
|
||||
|
||||
it('runs project:list --name oclif', async () => {
|
||||
const {stdout} = await runCommand('project:list --name oclif')
|
||||
expect(stdout).to.contain('hello oclif')
|
||||
})
|
||||
})
|
||||
@@ -1,14 +0,0 @@
|
||||
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')
|
||||
})
|
||||
})
|
||||
@@ -1,9 +0,0 @@
|
||||
{
|
||||
"extends": "../tsconfig",
|
||||
"compilerOptions": {
|
||||
"noEmit": true
|
||||
},
|
||||
"references": [
|
||||
{"path": ".."}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user