Skip to content
This repository has been archived by the owner on Sep 7, 2020. It is now read-only.

Commit

Permalink
Docs: update contributing page a little
Browse files Browse the repository at this point in the history
  • Loading branch information
MoOx committed Apr 29, 2016
1 parent 745669d commit 33a2431
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions docs/content/contributing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,14 @@ $ npm run docs-start
## Work on the core

Every core files are in `src/`. Tests are located relative to modules.
For every modification, please run the entire test suit by using `npm test`.

But when you are working on a specific component, to work faster, just be
focused on what you are interested on.
_After every modification, please run the entire test suit by using `npm test`._
Note that the full test suit can take a few minutes, as it run unit tests and
integration tests (with several builds, including docs and a new project from
the default boilerplate).

When you are working on a specific component, to work faster, you can keep your
focus on what you are interested on.

### Example with PageContainer

Expand All @@ -36,3 +40,6 @@ To run test for ``PageContainer`` component:
```console
$ ava src/PageContainer/__tests__/*
```

When you think you are done with your update, remember to run `$ npm test`.
Anyway, CI will warn us if something goes wrong.

0 comments on commit 33a2431

Please sign in to comment.