We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ec3e34 commit a4ab890Copy full SHA for a4ab890
Development.md
@@ -13,14 +13,25 @@ Please note that the yarn version used by CI is `v1.22.19` - you should use this
13
## Running tests
14
15
```sh
16
+# Run snapshot tests
17
npm run test
18
+# Update snapshot test outputs
19
+npm run update-snapshots
20
```
21
22
+## Debugging
23
+
24
+### Print debugging
25
26
+For print debugging, you can print types using:
27
28
+```typescript
29
+checker.typeToString(type)
30
-npm run update-snapshots
-```
31
-Generate snapshots and update.
32
+TODO: Document how to print the AST for a file
33
34
+TODO: Document how to print an individual AST node
35
36
## Skipping files/test for local development
37
0 commit comments