diff options
author | Bert Belder <bertbelder@gmail.com> | 2018-08-28 02:00:54 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2018-08-28 02:01:41 +0200 |
commit | 7e3d9f8f2bef650f4ed37fa17c68a5afc4be7146 (patch) | |
tree | e943512babcba148027482de80e71f69b0bc6eec /js | |
parent | 4dbe5eabe971cbcb1f32292f6a8b5cfb7c02186b (diff) |
format
Diffstat (limited to 'js')
-rw-r--r-- | js/console_test.ts | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/js/console_test.ts b/js/console_test.ts index d38974c66..01345825d 100644 --- a/js/console_test.ts +++ b/js/console_test.ts @@ -78,5 +78,8 @@ test(function consoleTestStringifyCircular() { assertEqual(stringify(function f() {}), "[Function: f]"); assertEqual(stringify(nestedObj), nestedObjExpected); assertEqual(stringify(JSON), "{}"); - assertEqual(stringify(console), "Console { printFunc: [Function], debug: [Function: log], info: [Function: log], error: [Function: warn] }"); + assertEqual( + stringify(console), + "Console { printFunc: [Function], debug: [Function: log], info: [Function: log], error: [Function: warn] }" + ); }); |