Skip to content
This repository has been archived by the owner on Aug 19, 2019. It is now read-only.

Commit

Permalink
📝 update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
deepsweet committed Dec 26, 2016
1 parent c42a930 commit a290013
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@

## Install

```
npm i -D start-ava
```sh
npm install --save-dev start-ava
# or
yarn add --dev start-ava
```

## Usage
Expand All @@ -27,13 +29,13 @@ import tapSpec from 'tap-spec';
const start = Start(reporter());

export const test = () => start(
files('test/**/*.js'),
ava('tap', tapSpec)
files('test/**/*.js'),
ava('tap', tapSpec)
);

export const tdd = () => start(
files([ 'lib/**/*.js', 'test/**/*.js' ]),
watch(test)
files([ 'lib/**/*.js', 'test/**/*.js' ]),
watch(test)
);
```

Expand Down

0 comments on commit a290013

Please sign in to comment.