You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
newResponse('{"errors":[{"message":"GraphQL multipart request path in map does not match the variables.","extensions":{"category":"user"},"status":400}]}'),
192
+
newResponse('{"errors":[{"message":"GraphQL multipart request path in map does not match the variables.","extensions":{"category":"user","status":400}}]}'),
193
193
],
194
194
];
195
195
}
@@ -202,7 +202,7 @@ public function testBadContentTypePostAction(): void
$this->assertEquals('{"errors":[{"message":"GraphQL query is not valid.","extensions":{"category":"user"},"status":400}]}', $mockedEntrypoint($request)->getContent());
205
+
$this->assertEquals('{"errors":[{"message":"GraphQL query is not valid.","extensions":{"category":"user","status":400}}]}', $mockedEntrypoint($request)->getContent());
206
206
}
207
207
208
208
publicfunctiontestBadMethodAction(): void
@@ -212,7 +212,7 @@ public function testBadMethodAction(): void
$this->assertEquals('{"errors":[{"message":"GraphQL query is not valid.","extensions":{"category":"user"},"status":400}]}', $mockedEntrypoint($request)->getContent());
215
+
$this->assertEquals('{"errors":[{"message":"GraphQL query is not valid.","extensions":{"category":"user","status":400}}]}', $mockedEntrypoint($request)->getContent());
216
216
}
217
217
218
218
publicfunctiontestBadVariablesAction(): void
@@ -222,7 +222,7 @@ public function testBadVariablesAction(): void
$this->assertEquals('{"errors":[{"message":"GraphQL variables are not valid JSON.","extensions":{"category":"user"},"status":400}]}', $mockedEntrypoint($request)->getContent());
225
+
$this->assertEquals('{"errors":[{"message":"GraphQL variables are not valid JSON.","extensions":{"category":"user","status":400}}]}', $mockedEntrypoint($request)->getContent());
0 commit comments