OurBigBook
Suppose you selected a single test:
npm test -- -g 'cli: empty document'
and want to inspect the ID database database status.
On SQLite it is not currently possible as tests run on a temporary in-memory database. TODO create a way.
On PostgreSQL, you can just inspect the ourbigbook_cli table with the psql command line executable, e.g..
psql ourbigbook_cli -c 'select * from "Id"'
That table is used to run each test, and will contain the contents of the last test executed.

Ancestors

  1. Test system
  2. Developing OurBigBook
  3. OurBigBook Project