Skip to content

Commit 1868204

Browse files
committed
Close #597 PR: Readme improvements
See PR for individual commits.
1 parent 45f96bd commit 1868204

File tree

3 files changed

+266
-202
lines changed

3 files changed

+266
-202
lines changed

cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var conf = pkgConf.sync('ava', {
4343

4444
var cli = meow([
4545
'Usage',
46-
' ava [<file|folder|glob> ...]',
46+
' ava [<file|directory|glob> ...]',
4747
'',
4848
'Options',
4949
' --init Add AVA to your project',

docs/recipes/code-coverage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Translations: [Español](https://github.com/sindresorhus/ava-docs/blob/master/es_ES/docs/recipes/code-coverage.md), [Français](https://github.com/sindresorhus/ava-docs/blob/master/fr_FR/docs/recipes/code-coverage.md), [日本語](https://github.com/sindresorhus/ava-docs/blob/master/ja_JP/docs/recipes/code-coverage.md), [Português](https://github.com/sindresorhus/ava-docs/blob/master/pt_BR/docs/recipes/code-coverage.md), [Русский](https://github.com/sindresorhus/ava-docs/blob/master/ru_RU/docs/recipes/code-coverage.md)
44

5-
As AVA [spawns the test files][isolated-env], you can't use [`istanbul`] for code coverage; instead, you can achieve this with [`nyc`] which is basically [`istanbul`] with sub-process support.
5+
As AVA [spawns the test files][process-isolation], you can't use [`istanbul`] for code coverage; instead, you can achieve this with [`nyc`] which is basically [`istanbul`] with sub-process support.
66

77
## Setup
88

@@ -176,6 +176,6 @@ Your coverage report will then appear on coveralls shortly after Travis complete
176176
[coveralls.io]: https://coveralls.io
177177
[`coveralls`]: https://github.com/nickmerwin/node-coveralls
178178
[`cross-env`]: https://github.com/kentcdodds/cross-env
179-
[isolated-env]: https://github.com/sindresorhus/ava#isolated-environment
179+
[process-isolation]: https://github.com/sindresorhus/ava#process-isolation
180180
[`istanbul`]: https://github.com/gotwarlost/istanbul
181181
[`nyc`]: https://github.com/bcoe/nyc

0 commit comments

Comments
 (0)