We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 281e3fc commit 38b1b89Copy full SHA for 38b1b89
modules/thunder_gqls/tests/src/Traits/ThunderGqlsTestTrait.php
@@ -29,7 +29,11 @@ protected function runAndTestQuery(string $schema): void {
29
30
$expectedData = $this->jsonDecode($this->getExpectedResponseFromFile($schema))['data'];
31
32
- $this->assertEqualsCanonicalizing($expectedData, $responseData);
+ $this->assertEqualsCanonicalizing(
33
+ $expectedData,
34
+ $responseData,
35
+ 'The expected schema for "' . $schema . '" did not match the result.'
36
+ );
37
}
38
39
/**
0 commit comments