Remove test template

This commit is contained in:
Danny Lin 2021-12-18 02:32:37 -08:00
parent b91d9772c7
commit 8bc184ab17
3 changed files with 0 additions and 31 deletions

View file

@ -1,17 +0,0 @@
import {expect, test} from '@oclif/test'
describe('hello', () => {
test
.stdout()
.command(['hello'])
.it('runs hello', ctx => {
expect(ctx.stdout).to.contain('hello world')
})
test
.stdout()
.command(['hello', '--name', 'jeff'])
.it('runs hello --name jeff', ctx => {
expect(ctx.stdout).to.contain('hello jeff')
})
})

View file

@ -1,5 +0,0 @@
--require ts-node/register
--watch-extensions ts
--recursive
--reporter spec
--timeout 5000

View file

@ -1,9 +0,0 @@
{
"extends": "../tsconfig",
"compilerOptions": {
"noEmit": true
},
"references": [
{"path": ".."}
]
}