import test from 'node:test'; import assert from 'node:assert/strict'; import { getWorkspacePendingCount } from './workspace-engine'; test('getWorkspacePendingCount counts unfinished work items only', () => { const count = getWorkspacePendingCount([ { completed: false }, { completed: true }, { completed: false }, ]); assert.equal(count, 2); });