mirror of
https://github.com/josdejong/mathjs.git
synced 2026-02-01 16:07:46 +00:00
19 lines
385 B
Plaintext
19 lines
385 B
Plaintext
## Tests
|
|
|
|
To execute the tests, run the following in the root of the project:
|
|
|
|
|
|
mocha test --recursive
|
|
|
|
|
|
## Code coverage
|
|
|
|
To test code coverage of the tests, install `istanbul` and run it:
|
|
|
|
npm install -g istanbul
|
|
istanbul cover _mocha test --recursive --reporter spec
|
|
|
|
To see the results, open the generated report in your browser:
|
|
|
|
./coverage/lcov-report/index.html
|