mirror of
https://github.com/koreader/koreader.git
synced 2025-08-10 00:52:38 +00:00
15 lines
505 B
Markdown
15 lines
505 B
Markdown
# Unit Tests
|
|
|
|
Unit tests are written for [busted](https://lunarmodules.github.io/busted/)
|
|
(a version is automatically provided by the build system), and executed in
|
|
parallel with the meson test runner.
|
|
|
|
You can run them with `./kodev test`, examples:
|
|
|
|
- to run all tests (frontend & base): `./kodev test`
|
|
- frontend only: `./kodev test front`
|
|
- to run one specific base test: `./kodev test base util`
|
|
- to list available tests: `./kodev test -l`
|
|
|
|
Check the output of `./kodev test -h` for the full usage.
|