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
21
21
yarn link webpack
22
22
```
23
23
24
- ### To run the entire test suite use:
24
+ ### To run the entire test suite use
25
25
26
26
``` bash
27
27
yarn test
28
28
```
29
29
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
31
73
32
74
``` bash
33
75
yarn type-lint
34
76
```
35
77
36
- or incremental as you add JSDoc Annotations or make changes
78
+ or incremental (in watch mode)
37
79
38
80
``` bash
39
81
yarn type-lint --watch
You can’t perform that action at this time.
0 commit comments