Skip to content
This repository was archived by the owner on Apr 17, 2024. It is now read-only.

Commit 98e65ff

Browse files
author
Mateu Aguiló Bosch
committed
fix: remove GraphQL tests
1 parent 5d9679d commit 98e65ff

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

tests/src/Functional/InstallationTest.php

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,4 @@ public function testRpcMethod() {
9393
$this->assertEquals('/api', $output['result']['openApi']['basePath']);
9494
}
9595

96-
public function testGraphQLQuery() {
97-
$query = '{"query":"query{nodeQuery{entities{entityLabel ... on NodeRecipe { fieldIngredients }}}}","variables":null}';
98-
$response = $this->httpClient->post($this->baseUrl . '/graphql', [
99-
'body' => $query,
100-
]);
101-
$this->assertEquals(200, $response->getStatusCode());
102-
$body = $response->getBody()->getContents();
103-
$output = Json::decode($body);
104-
$entities = $output['data']['nodeQuery']['entities'];
105-
$this->assertFalse(empty($entities));
106-
}
10796
}

0 commit comments

Comments
 (0)