* Correct installation documentation * Add stylized titles * Add some changes to the getting started documentation * Add changes for the backend guide * Add changes for the design guide * Add testing / Q&A guide improvements * Minor fixes to contributing docs * More improvements to the general doc * Improvements for frontend guide
875 B
875 B
| title |
|---|
| Code Coverage |
Code coverage
Rails
Rails tests will generate the code coverage at the end of the tests execution.
To get the code coverage of the whole Rails code base you need to run all the tests with:
bundle exec rspec
or
bin/rspec
To get the code coverage of a single file you can run
bundle exec rspec spec/models/user_spec.rb
or
bin/rspec spec/models/user_spec.rb
After the test run is complete, open coverage/index.html with a browser so you can check the the code coverage.
Preact
Preact tests will generate the code coverage at the end of the tests execution.
To get the code coverage of the Preact code base you need to run all the tests with:
npm run test
or
yarn test
After the test run is complete, you will see the coverage on the console.