Client-side implementation, in typescript, of the Trace Server Protocol.
Notice: this implementation is currently in the "Works on my computer" phase. Testing will come soon.
👋 Want to help? Read our contributor guide.
Clone the repository and run (with Yarn):
yarnTo run tests once, at the root of the project do:
yarn test --verboseTo keep tests running do:
yarn test --verbose --watchThe following command prints a coverage report to the terminal. As of now it covers all typescript files of the project, including those that are not supposed to have tests.
yarn test --coverage --collectCoverageFrom='src/**/*.ts'