File tree Expand file tree Collapse file tree 1 file changed +45
-3
lines changed
Expand file tree Collapse file tree 1 file changed +45
-3
lines changed Original file line number Diff line number Diff line change @@ -21,19 +21,61 @@ yarn link
2121yarn link webpack
2222```
2323
24- ### To run the entire test suite use:
24+ ### To run the entire test suite use
2525
2626``` bash
2727yarn 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
3375yarn type-lint
3476```
3577
36- or incremental as you add JSDoc Annotations or make changes
78+ or incremental (in watch mode)
3779
3880``` bash
3981yarn type-lint --watch
You can’t perform that action at this time.
0 commit comments