| Index: dart/pkg/unittest/lib/test_controller.js
|
| diff --git a/dart/pkg/unittest/lib/test_controller.js b/dart/pkg/unittest/lib/test_controller.js
|
| index 5332c190554559ef26e289ff9a5c4727951e0fba..34d56ed53dce1b42e03c4f88f2ba7dcc99692430 100644
|
| --- a/dart/pkg/unittest/lib/test_controller.js
|
| +++ b/dart/pkg/unittest/lib/test_controller.js
|
| @@ -135,6 +135,8 @@ function dartMainRunner(main) {
|
| try {
|
| main();
|
| } catch (e) {
|
| + dartPrint(e);
|
| + if (e.stack) dartPrint(e.stack);
|
| window.postMessage('unittest-suite-fail', '*');
|
| return;
|
| }
|
|
|