From d26655371b796cf5dad762d1b7154c25251cb41d Mon Sep 17 00:00:00 2001 From: Yoshiya Hinosawa Date: Tue, 12 Feb 2019 02:57:26 +0900 Subject: fix: improve formatting (#1732) --- js/console_test.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'js/console_test.ts') diff --git a/js/console_test.ts b/js/console_test.ts index f84dc247a..f1a8ca664 100644 --- a/js/console_test.ts +++ b/js/console_test.ts @@ -245,8 +245,11 @@ test(function consoleTestError() { try { throw new MyError("This is an error"); } catch (e) { - assert(stringify(e).split("\n")[3] - .includes("MyError: This is an error")); + assert( + stringify(e) + .split("\n")[3] + .includes("MyError: This is an error") + ); } }); -- cgit v1.2.3