From fe4d6afc4fdb8c04e8c5bad004302be14696e333 Mon Sep 17 00:00:00 2001 From: devilkiller-ag Date: Thu, 22 Feb 2024 10:06:01 +0530 Subject: [PATCH] removed boilerplate test --- modelina-cli/test/commands/hello/index.test.ts | 10 ---------- modelina-cli/test/commands/hello/world.test.ts | 10 ---------- 2 files changed, 20 deletions(-) delete mode 100644 modelina-cli/test/commands/hello/index.test.ts delete mode 100644 modelina-cli/test/commands/hello/world.test.ts diff --git a/modelina-cli/test/commands/hello/index.test.ts b/modelina-cli/test/commands/hello/index.test.ts deleted file mode 100644 index f4e5ebef86..0000000000 --- a/modelina-cli/test/commands/hello/index.test.ts +++ /dev/null @@ -1,10 +0,0 @@ -import {expect, test} from '@oclif/test' - -describe('hello', () => { - test - .stdout() - .command(['hello', 'friend', '--from=oclif']) - .it('runs hello cmd', ctx => { - expect(ctx.stdout).to.contain('hello friend from oclif!') - }) -}) diff --git a/modelina-cli/test/commands/hello/world.test.ts b/modelina-cli/test/commands/hello/world.test.ts deleted file mode 100644 index 8096cbaca2..0000000000 --- a/modelina-cli/test/commands/hello/world.test.ts +++ /dev/null @@ -1,10 +0,0 @@ -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!') - }) -})