Skip to content

Commit

Permalink
update test snapshots
Browse files Browse the repository at this point in the history
  • Loading branch information
sbarker2 committed Jun 26, 2024
1 parent 66e1b87 commit d01433c
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 34 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,8 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
| "path": [
| "user"
| ],
| "label": "team-details",
| "data": {
| "teamName": "The Unicorns",
| "teamMembers": [
| "Felipe",
| "Franklin",
| "Juliano"
| ]
| "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
| }
| }
| ]
Expand All @@ -117,8 +111,14 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
| "path": [
| "user"
| ],
| "label": "team-details",
| "data": {
| "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
| "teamName": "The Unicorns",
| "teamMembers": [
| "Felipe",
| "Franklin",
| "Juliano"
| ]
| }
| }
| ]
Expand All @@ -134,13 +134,13 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
* "data": {
* "user": {
* "name": "Steven",
* "profilePicture": "https://examplesite.com/user/profile_picture.jpg",
* "teamName": "The Unicorns",
* "teamMembers": [
* "Felipe",
* "Franklin",
* "Juliano"
* ]
* ],
* "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
* },
* "product": {
* "productName": "Awesome Product",
Expand Down Expand Up @@ -175,14 +175,8 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
| "path": [
| "user"
| ],
| "label": "team-details",
| "data": {
| "teamName": "The Unicorns",
| "teamMembers": [
| "Felipe",
| "Franklin",
| "Juliano"
| ]
| "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
| }
| }
| ]
Expand Down Expand Up @@ -211,8 +205,14 @@ public class ComprehensiveDeferQueryWithDifferentServiceCallsSnapshot : TestSnap
| "path": [
| "user"
| ],
| "label": "team-details",
| "data": {
| "profilePicture": "https://examplesite.com/user/profile_picture.jpg"
| "teamName": "The Unicorns",
| "teamMembers": [
| "Felipe",
| "Franklin",
| "Juliano"
| ]
| }
| }
| ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ public class MultipleDeferDirectivesTestSnapshot : TestSnapshot() {
| "defer"
| ],
| "data": {
| "slowField": "slowString"
| "anotherSlowField": 123456789
| }
| }
| ]
Expand All @@ -68,7 +68,7 @@ public class MultipleDeferDirectivesTestSnapshot : TestSnapshot() {
| "defer"
| ],
| "data": {
| "anotherSlowField": 123456789
| "slowField": "slowString"
| }
| }
| ]
Expand All @@ -84,8 +84,8 @@ public class MultipleDeferDirectivesTestSnapshot : TestSnapshot() {
* "data": {
* "defer": {
* "fastField": "123",
* "anotherSlowField": 123456789,
* "slowField": "slowString"
* "slowField": "slowString",
* "anotherSlowField": 123456789
* }
* }
* }
Expand All @@ -112,7 +112,7 @@ public class MultipleDeferDirectivesTestSnapshot : TestSnapshot() {
| "defer"
| ],
| "data": {
| "slowField": "slowString"
| "anotherSlowField": 123456789
| }
| }
| ]
Expand All @@ -127,7 +127,7 @@ public class MultipleDeferDirectivesTestSnapshot : TestSnapshot() {
| "defer"
| ],
| "data": {
| "anotherSlowField": 123456789
| "slowField": "slowString"
| }
| }
| ]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
| "path": [
| "defer"
| ],
| "label": "inner defer",
| "label": "outer defer",
| "data": {
| "slowField2": null
| "slowField1": null
| }
| }
| ]
Expand All @@ -68,9 +68,9 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
| "path": [
| "defer"
| ],
| "label": "outer defer",
| "label": "inner defer",
| "data": {
| "slowField1": null
| "slowField2": null
| }
| }
| ]
Expand All @@ -86,8 +86,8 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
* "data": {
* "defer": {
* "fastField": null,
* "slowField1": null,
* "slowField2": null
* "slowField2": null,
* "slowField1": null
* }
* }
* }
Expand All @@ -113,9 +113,9 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
| "path": [
| "defer"
| ],
| "label": "inner defer",
| "label": "outer defer",
| "data": {
| "slowField2": null
| "slowField1": null
| }
| }
| ]
Expand All @@ -129,9 +129,9 @@ public class NestedDefersTestSnapshot : TestSnapshot() {
| "path": [
| "defer"
| ],
| "label": "outer defer",
| "label": "inner defer",
| "data": {
| "slowField1": null
| "slowField2": null
| }
| }
| ]
Expand Down

0 comments on commit d01433c

Please sign in to comment.