fix: improve formatting (#1732)

This commit is contained in:
Yoshiya Hinosawa 2019-02-12 02:57:26 +09:00 committed by Ryan Dahl
parent 90c7af27d7
commit d26655371b
17 changed files with 55 additions and 30 deletions

View file

@ -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")
);
}
});