feat(cli): print resolved project dir

This commit is contained in:
Andrey Avtomonov 2026-05-12 15:04:01 +02:00
parent a0ea1609ac
commit 0ff14e1953
4 changed files with 143 additions and 11 deletions

View file

@ -239,7 +239,7 @@ describe('dev Commander tree', () => {
},
scanIo.io,
);
expect(scanIo.stderr()).toBe('');
expect(scanIo.stderr()).toBe('Project: /tmp/project\n');
});
it('dispatches dev scan --mode relationships through Commander', async () => {
@ -266,7 +266,7 @@ describe('dev Commander tree', () => {
},
io.io,
);
expect(io.stderr()).toBe('');
expect(io.stderr()).toBe('Project: /tmp/project\n');
});
it.each(['--enrich', '--detect-relationships'])('rejects removed scan shorthand option %s', async (option) => {