Some checks failed
Test Suite / unit-tests (3.11) (push) Has been cancelled
Test Suite / unit-tests (3.12) (push) Has been cancelled
Test Suite / code-quality (push) Has been cancelled
Test Suite / security-scan (push) Has been cancelled
Test Suite / integration-tests (push) Has been cancelled
Test Suite / e2e-tests (push) Has been cancelled
Test Suite / performance-tests (push) Has been cancelled
Test Suite / test-summary (push) Has been cancelled
- Add comprehensive image test document with various image types - Update project structure with development artifacts - Prepare foundation for image support enhancement phase - Include test files for validating image editing workflows 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
26 lines
510 B
JavaScript
26 lines
510 B
JavaScript
var exit = require('../../lib/exit');
|
|
|
|
var errorCode = process.argv[2];
|
|
var max = process.argv[3];
|
|
var modes = process.argv.slice(4);
|
|
|
|
function stdout(message) {
|
|
if (modes.indexOf('stdout') === -1) { return; }
|
|
process.stdout.write('stdout ' + message + '\n');
|
|
}
|
|
|
|
function stderr(message) {
|
|
if (modes.indexOf('stderr') === -1) { return; }
|
|
process.stderr.write('stderr ' + message + '\n');
|
|
}
|
|
|
|
for (var i = 0; i < max; i++) {
|
|
stdout(i);
|
|
stderr(i);
|
|
}
|
|
|
|
exit(errorCode);
|
|
|
|
stdout('fail');
|
|
stderr('fail');
|