Suppose you selected a single test:and want to inspect the ID database database status.
npm test -- -g 'cli: empty document'
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 That table is used to run each test, and will contain the contents of the last test executed.
ourbigbook_cli
table with the psql
command line executable, e.g..psql ourbigbook_cli -c 'select * from "Id"'