diff --git a/cypress/snapshots/Arrays.json b/cypress/snapshots/Arrays.json index 79fed65..dc8d53f 100644 --- a/cypress/snapshots/Arrays.json +++ b/cypress/snapshots/Arrays.json @@ -1 +1,8 @@ -{"data":[1,2,3]} \ No newline at end of file +{ + "data": [ + 1, + 2, + 3, + 4 + ] +} \ No newline at end of file diff --git a/cypress/snapshots/Numbers.json b/cypress/snapshots/Numbers.json index 9252594..7941fc3 100644 --- a/cypress/snapshots/Numbers.json +++ b/cypress/snapshots/Numbers.json @@ -1 +1,3 @@ -{"data":42} \ No newline at end of file +{ + "data": 42 +} \ No newline at end of file diff --git a/cypress/snapshots/Objects.json b/cypress/snapshots/Objects.json index 323e207..c65ca7b 100644 --- a/cypress/snapshots/Objects.json +++ b/cypress/snapshots/Objects.json @@ -1 +1,4 @@ -{"foo":"bar","Fizzy Drink":"Pop"} \ No newline at end of file +{ + "foo": "bar", + "Fizzy Drink": "Pop" +} \ No newline at end of file diff --git a/cypress/snapshots/Random-Fixture-File.json b/cypress/snapshots/Random-Fixture-File.json index 86ac8e3..cf78053 100644 --- a/cypress/snapshots/Random-Fixture-File.json +++ b/cypress/snapshots/Random-Fixture-File.json @@ -1 +1,4 @@ -{"foo":"bar","Fizzy Drink":"Soda"} \ No newline at end of file +{ + "foo": "bar", + "Fizzy Drink": "Soda" +} \ No newline at end of file diff --git a/cypress/snapshots/Strings.json b/cypress/snapshots/Strings.json index 1960a41..c36f355 100644 --- a/cypress/snapshots/Strings.json +++ b/cypress/snapshots/Strings.json @@ -1 +1,3 @@ -{"data":"foo-bar"} \ No newline at end of file +{ + "data": "foo-bar" +} \ No newline at end of file