From 67e58e62817df5affc18439b25d75e4b4272c4ef Mon Sep 17 00:00:00 2001 From: Ta5r Date: Tue, 24 Sep 2024 12:44:21 +0530 Subject: [PATCH] temp : log breaks --- tests/unit/CoreListTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/unit/CoreListTest.php b/tests/unit/CoreListTest.php index 366355e3..d1f5445a 100644 --- a/tests/unit/CoreListTest.php +++ b/tests/unit/CoreListTest.php @@ -129,6 +129,7 @@ public function test_retrieve_core_list_fields_and_attribute(): void { ]; $actual = graphql( compact( 'query', 'variables' ) ); + error_log( print_r( $actual, true ) ); $this->assertArrayNotHasKey( 'errors', $actual, 'There should not be any errors' ); $this->assertArrayHasKey( 'data', $actual, 'The data key should be present' ); @@ -202,6 +203,7 @@ public function test_retrieve_core_list_attributes_typography_and_lock(): void { ]; $actual = graphql( compact( 'query', 'variables' ) ); + error_log( print_r( $actual, true ) ); $this->assertArrayNotHasKey( 'errors', $actual, 'There should not be any errors' ); $this->assertArrayHasKey( 'data', $actual, 'The data key should be present' ); @@ -281,6 +283,7 @@ public function test_retrieve_core_list_attributes_ordered_and_reversed(): void ]; $actual = graphql( compact( 'query', 'variables' ) ); + error_log( print_r( $actual, true ) ); $this->assertArrayNotHasKey( 'errors', $actual, 'There should not be any errors' ); $this->assertArrayHasKey( 'data', $actual, 'The data key should be present' ); @@ -356,6 +359,7 @@ public function test_retrieve_core_list_attributes_start_and_styles(): void { ]; $actual = graphql( compact( 'query', 'variables' ) ); + error_log( print_r( $actual, true ) ); $this->assertArrayNotHasKey( 'errors', $actual, 'There should not be any errors' ); $this->assertArrayHasKey( 'data', $actual, 'The data key should be present' ); @@ -446,6 +450,7 @@ public function test_retrieve_core_list_item_fields_and_attribute(): void { ]; $actual = graphql( compact( 'query', 'variables' ) ); + error_log( print_r( $actual, true ) ); $this->assertArrayNotHasKey( 'errors', $actual, 'There should not be any errors' ); $this->assertArrayHasKey( 'data', $actual, 'The data key should be present' ); @@ -515,6 +520,7 @@ public function test_retrieve_core_list_item_untested_attributes(): void { ]; $actual = graphql( compact( 'query', 'variables' ) ); + error_log( print_r( $actual, true ) ); $this->assertArrayNotHasKey( 'errors', $actual, 'There should not be any errors' ); $this->assertArrayHasKey( 'data', $actual, 'The data key should be present' );