findUserArg in singleContainer.ts is exported but has no test coverage.
No test file currently imports from singleContainer.
Proposing to add src/test/singleContainer.test.ts covering these cases:
- ['-u', 'myuser'] -> 'myuser'
- ['--user', 'myuser'] -> 'myuser'
- ['--user=myuser'] -> 'myuser'
- ['--user', 'a', '-u', 'b'] -> 'b' (last wins)
- [] -> undefined
Would this be helpful?