Ensure error output from tests is readable
parent
81c11b822c
commit
a17ea27109
|
@ -270,5 +270,5 @@ function runTests(opts) {
|
||||||
|
|
||||||
ipcRenderer.on('run', (e, opts) => {
|
ipcRenderer.on('run', (e, opts) => {
|
||||||
initLoader(opts);
|
initLoader(opts);
|
||||||
runTests(opts).catch(err => console.error(err));
|
runTests(opts).catch(err => console.error(typeof err === 'string' ? err : JSON.stringify(err)));
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue