You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 8, 2020. It is now read-only.
Copy file name to clipboardExpand all lines: readme.md
+2-7Lines changed: 2 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -18,15 +18,15 @@ const ava = require('gulp-ava');
18
18
19
19
gulp.task('default', () =>
20
20
gulp.src('test.js')
21
-
// `gulp-ava` needs filepaths, so you can't have any plugins before it
21
+
// `gulp-ava` needs file paths, so you can't have any plugins before it
22
22
.pipe(ava({verbose:true}))
23
23
);
24
24
```
25
25
26
26
27
27
## API
28
28
29
-
### ava([options])
29
+
### ava(options?)
30
30
31
31
This plugin adheres to AVA [options](https://github.com/avajs/ava#configuration) in package.json. You can also specify options in the plugin, as seen above, but prefer the package.json approach whenever possible.
32
32
@@ -45,8 +45,3 @@ Type: `boolean`<br>
45
45
Default: `false`
46
46
47
47
Run AVA with [`nyc`](https://github.com/istanbuljs/nyc). You must have `nyc` as a devDependency. `nyc`[options](https://github.com/istanbuljs/nyc#configuring-nyc) can be defined in package.json.
0 commit comments