import inspect from 'object-inspect'; import { client } from './client'; const log = false; describe('process api getters', () => { it('should return a process by id along with the embedded info', async () => { await client.getProcess('100201').then((response) => { if (log) { console.log(inspect(response, { depth: 10, indent: 2 })); } }); }); });