maestro/tests/fixtures/scripts/logs-to-stderr.js
2026-06-03 05:08:00 +00:00

7 lines
136 B
JavaScript

async function main() {
console.error('hello from stderr');
console.error('second line');
return 'done';
}
module.exports = main;