Skip to content

Commit 5bdeaa5

Browse files
committed
add other commands to guide
1 parent f67d99c commit 5bdeaa5

File tree

1 file changed

+45
-3
lines changed

1 file changed

+45
-3
lines changed

_SETUP.md

Lines changed: 45 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,61 @@ yarn link
2121
yarn link webpack
2222
```
2323

24-
### To run the entire test suite use:
24+
### To run the entire test suite use
2525

2626
```bash
2727
yarn test
2828
```
2929

30-
### To run the typechecker use:
30+
### To run only intergration tests use
31+
32+
```bash
33+
yarn test:integration
34+
```
35+
36+
or in watch mode
37+
38+
```bash
39+
yarn test:integration --watch
40+
```
41+
42+
### To run only unit tests use
43+
44+
```bash
45+
yarn test:unit
46+
```
47+
48+
or in watch mode
49+
50+
```bash
51+
yarn test:unit --watch
52+
```
53+
54+
### To run code formatter (prettier) run
55+
56+
```bash
57+
yarn pretty
58+
```
59+
60+
### To run all linters use
61+
62+
This performs linting on:
63+
64+
* eslint (code-lint script)
65+
* schema (schema-lint script)
66+
* types (type-lint script)
67+
68+
```bash
69+
yarn lint
70+
```
71+
72+
### To run only the typechecker use
3173

3274
```bash
3375
yarn type-lint
3476
```
3577

36-
or incremental as you add JSDoc Annotations or make changes
78+
or incremental (in watch mode)
3779

3880
```bash
3981
yarn type-lint --watch

0 commit comments

Comments
 (0)