10000 fix: oclif v1.11.6 · oclif/example-single-ts@9234f92 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
This repository was archived by the owner on Dec 9, 2021. It is now read-only.

Commit 9234f92

Browse files
committed
fix: oclif v1.11.6
## [1.11.6](oclif/oclif@v1.11.5...v1.11.6) (2018-09-14) ### Bug Fixes * updated eslint and tslint ([c2ae997](oclif/oclif@c2ae997))
1 parent eafae88 commit 9234f92

File tree

3 files changed

+238
-818
lines changed

3 files changed

+238
-818
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/node": "^10",
2121
"chai": "^4",
2222
"mocha": "^5",
23-
"nyc": "^12",
23+
"nyc": "^13",
2424
"ts-node": "^7",
2525
"typescript": "^3.0"
2626
},

test/index.test.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ import cmd = require('../src')
44

55
describe('@oclif/example-single-ts', () => {
66
test
7-
.stdout()
8-
.do(() => cmd.run([]))
9-
.it('runs hello', ctx => {
10-
expect(ctx.stdout).to.contain('hello world')
11-
})
7+
.stdout()
8+
.do(() => cmd.run([]))
9+
.it('runs hello', ctx => {
10+
expect(ctx.stdout).to.contain('hello world')
11+
})
1212

1313
test
14-
.stdout()
15-
.do(() => cmd.run(['--name', 'jeff']))
16-
.it('runs hello --name jeff', ctx => {
17-
expect(ctx.stdout).to.contain('hello jeff')
18-
})
14+
.stdout()
15+
.do(() => cmd.run(['--name', 'jeff']))
16+
.it('runs hello --name jeff', ctx => {
17+
expect(ctx.stdout).to.contain('hello jeff')
18+
})
1919
})

0 commit comments

Comments
 (0)
0