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):
yarn
To run tests once, at the root of the project do:
yarn test --verbose
To keep tests running do:
yarn test --verbose --watch
The 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'