From 8fef2ec55d970918e78eb25c63e20cd602bc34ce Mon Sep 17 00:00:00 2001 From: "Christopher J. Brody" Date: Wed, 23 Jun 2021 13:39:30 -0400 Subject: [PATCH] update test snapshots in tests/ternaries/with-balanced-formatting (...) add commit notes: The changes from these updates close #492 (brodybits/prettierx PR #492). add footer: BREAKING CHANGE --- .../__snapshots__/jsfmt.spec.js.snap | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/tests/ternary-object-expressions/with-balanced-formatting/__snapshots__/jsfmt.spec.js.snap b/tests/ternary-object-expressions/with-balanced-formatting/__snapshots__/jsfmt.spec.js.snap index 4946dbcd70..852e80b6dd 100644 --- a/tests/ternary-object-expressions/with-balanced-formatting/__snapshots__/jsfmt.spec.js.snap +++ b/tests/ternary-object-expressions/with-balanced-formatting/__snapshots__/jsfmt.spec.js.snap @@ -24,13 +24,13 @@ let isSpace = false; const dress = isSpace ? { - spaceSuit: 3, - oxygenCylinders: 6 - } + spaceSuit: 3, + oxygenCylinders: 6 + } : { - shirts: 3, - paints: 3 - }; + shirts: 3, + paints: 3 + }; ================================================================================ `; @@ -60,13 +60,13 @@ let isSpace = false; const dress = isSpace ? { - spaceSuit: 3, - oxygenCylinders: 6 - } + spaceSuit: 3, + oxygenCylinders: 6 + } : { - shirts: 3, - paints: 3 - }; + shirts: 3, + paints: 3 + }; ================================================================================ `; @@ -96,13 +96,13 @@ let isSpace = false; const dress = isSpace ? { - spaceSuit: 3, - oxygenCylinders: 6 - } + spaceSuit: 3, + oxygenCylinders: 6 + } : { - shirts: 3, - paints: 3 - }; + shirts: 3, + paints: 3 + }; ================================================================================ `; @@ -133,13 +133,13 @@ let isSpace = false; const dress = isSpace ? { - spaceSuit: 3, - oxygenCylinders: 6 - } + spaceSuit: 3, + oxygenCylinders: 6 + } : { - shirts: 3, - paints: 3 - }; + shirts: 3, + paints: 3 + }; ================================================================================ `; @@ -224,8 +224,8 @@ function test1() { ? Promise(1) : Promise(2) : condition3 - ? Promise(3) - : Promise(4); + ? Promise(3) + : Promise(4); } ================================================================================ @@ -268,8 +268,8 @@ function test1() { ? Promise(1) : Promise(2) : condition3 - ? Promise(3) - : Promise(4); + ? Promise(3) + : Promise(4); } ================================================================================ @@ -313,8 +313,8 @@ function test1() { ? Promise(1) : Promise(2) : condition3 - ? Promise(3) - : Promise(4); + ? Promise(3) + : Promise(4); } ================================================================================