Tests
cd into a package and run the tests, for example:
cd ./packages/ast
yarn test:watchIf you are doing major development, you'll probably want to open up a few windows, and run tests in at least these three packages:
the ast package:
cd ./packages/ast
yarn test:watchthe parser package:
cd ./packages/parser
yarn test:watchthe telescope package will also generate more fixtures, so you can see the end result.
cd ./packages/telescope
yarn test:watch