From 38844673cd7caa683eef368ab4c01c240df8e276 Mon Sep 17 00:00:00 2001 From: Mauricio Siu <47042324+Siumauricio@users.noreply.github.com> Date: Sat, 22 Jun 2024 23:23:26 -0600 Subject: [PATCH] remove --- test/commands/app/create.test.ts | 14 -------------- test/commands/app/delete.test.ts | 14 -------------- test/commands/authenticate.test.ts | 14 -------------- test/commands/check-server.test.ts | 14 -------------- test/commands/database/create.test.ts | 14 -------------- test/commands/database/mariadb/create.test.ts | 14 -------------- test/commands/database/mariadb/delete.test.ts | 14 -------------- test/commands/database/mongo/create.test.ts | 14 -------------- test/commands/database/mongo/delete.test.ts | 14 -------------- test/commands/database/mysql/create.test.ts | 14 -------------- test/commands/database/mysql/delete.test.ts | 14 -------------- test/commands/database/postgres/create.test.ts | 14 -------------- test/commands/database/postgres/delete.test.ts | 14 -------------- test/commands/database/redis/create.test.ts | 14 -------------- test/commands/database/redis/delete.test.ts | 14 -------------- test/commands/hello/index.test.ts | 9 --------- test/commands/hello/world.test.ts | 9 --------- test/commands/project/create.test.ts | 14 -------------- test/commands/project/info.test.ts | 14 -------------- test/commands/project/list.test.ts | 14 -------------- test/commands/verify.test.ts | 14 -------------- test/tsconfig.json | 9 --------- 22 files changed, 293 deletions(-) delete mode 100644 test/commands/app/create.test.ts delete mode 100644 test/commands/app/delete.test.ts delete mode 100644 test/commands/authenticate.test.ts delete mode 100644 test/commands/check-server.test.ts delete mode 100644 test/commands/database/create.test.ts delete mode 100644 test/commands/database/mariadb/create.test.ts delete mode 100644 test/commands/database/mariadb/delete.test.ts delete mode 100644 test/commands/database/mongo/create.test.ts delete mode 100644 test/commands/database/mongo/delete.test.ts delete mode 100644 test/commands/database/mysql/create.test.ts delete mode 100644 test/commands/database/mysql/delete.test.ts delete mode 100644 test/commands/database/postgres/create.test.ts delete mode 100644 test/commands/database/postgres/delete.test.ts delete mode 100644 test/commands/database/redis/create.test.ts delete mode 100644 test/commands/database/redis/delete.test.ts delete mode 100644 test/commands/hello/index.test.ts delete mode 100644 test/commands/hello/world.test.ts delete mode 100644 test/commands/project/create.test.ts delete mode 100644 test/commands/project/info.test.ts delete mode 100644 test/commands/project/list.test.ts delete mode 100644 test/commands/verify.test.ts delete mode 100644 test/tsconfig.json diff --git a/test/commands/app/create.test.ts b/test/commands/app/create.test.ts deleted file mode 100644 index aaa7dbb..0000000 --- a/test/commands/app/create.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/app/delete.test.ts b/test/commands/app/delete.test.ts deleted file mode 100644 index 50dc59b..0000000 --- a/test/commands/app/delete.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/authenticate.test.ts b/test/commands/authenticate.test.ts deleted file mode 100644 index a3e158b..0000000 --- a/test/commands/authenticate.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/check-server.test.ts b/test/commands/check-server.test.ts deleted file mode 100644 index 8fbc599..0000000 --- a/test/commands/check-server.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/create.test.ts b/test/commands/database/create.test.ts deleted file mode 100644 index 0e9c882..0000000 --- a/test/commands/database/create.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/mariadb/create.test.ts b/test/commands/database/mariadb/create.test.ts deleted file mode 100644 index 5891adf..0000000 --- a/test/commands/database/mariadb/create.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/mariadb/delete.test.ts b/test/commands/database/mariadb/delete.test.ts deleted file mode 100644 index 1351ffe..0000000 --- a/test/commands/database/mariadb/delete.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/mongo/create.test.ts b/test/commands/database/mongo/create.test.ts deleted file mode 100644 index b04cc22..0000000 --- a/test/commands/database/mongo/create.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/mongo/delete.test.ts b/test/commands/database/mongo/delete.test.ts deleted file mode 100644 index 486a81b..0000000 --- a/test/commands/database/mongo/delete.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/mysql/create.test.ts b/test/commands/database/mysql/create.test.ts deleted file mode 100644 index 0812e46..0000000 --- a/test/commands/database/mysql/create.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/mysql/delete.test.ts b/test/commands/database/mysql/delete.test.ts deleted file mode 100644 index 9588a8f..0000000 --- a/test/commands/database/mysql/delete.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/postgres/create.test.ts b/test/commands/database/postgres/create.test.ts deleted file mode 100644 index a032ffd..0000000 --- a/test/commands/database/postgres/create.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/postgres/delete.test.ts b/test/commands/database/postgres/delete.test.ts deleted file mode 100644 index 8b5817e..0000000 --- a/test/commands/database/postgres/delete.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/redis/create.test.ts b/test/commands/database/redis/create.test.ts deleted file mode 100644 index 9e910e6..0000000 --- a/test/commands/database/redis/create.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/database/redis/delete.test.ts b/test/commands/database/redis/delete.test.ts deleted file mode 100644 index 52be139..0000000 --- a/test/commands/database/redis/delete.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/hello/index.test.ts b/test/commands/hello/index.test.ts deleted file mode 100644 index dad0ac3..0000000 --- a/test/commands/hello/index.test.ts +++ /dev/null @@ -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!') - }) -}) diff --git a/test/commands/hello/world.test.ts b/test/commands/hello/world.test.ts deleted file mode 100644 index 0f5e90f..0000000 --- a/test/commands/hello/world.test.ts +++ /dev/null @@ -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!') - }) -}) diff --git a/test/commands/project/create.test.ts b/test/commands/project/create.test.ts deleted file mode 100644 index cd9e123..0000000 --- a/test/commands/project/create.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/project/info.test.ts b/test/commands/project/info.test.ts deleted file mode 100644 index 5ad12ad..0000000 --- a/test/commands/project/info.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/project/list.test.ts b/test/commands/project/list.test.ts deleted file mode 100644 index c21edbb..0000000 --- a/test/commands/project/list.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/commands/verify.test.ts b/test/commands/verify.test.ts deleted file mode 100644 index 7311300..0000000 --- a/test/commands/verify.test.ts +++ /dev/null @@ -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') - }) -}) diff --git a/test/tsconfig.json b/test/tsconfig.json deleted file mode 100644 index 95898fc..0000000 --- a/test/tsconfig.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "extends": "../tsconfig", - "compilerOptions": { - "noEmit": true - }, - "references": [ - {"path": ".."} - ] -}