test.js ``` js import test from 'ava'; test('log test', t => { console.log('log1\nlog2'); }); ``` terminal output ``` log1 1 passed ``` Seems like the last string of logged text is swallowed.It complicate debuggin.