diff --git a/tests/unit/CoreTableTest.php b/tests/unit/CoreTableTest.php index 7f42d7d7..4d225383 100644 --- a/tests/unit/CoreTableTest.php +++ b/tests/unit/CoreTableTest.php @@ -131,6 +131,7 @@ public function test_retrieve_core_table_attribute_fields() { ]; $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' ); @@ -277,6 +278,7 @@ public function test_retrieve_core_table_attribute_fields_header_footer() { ]; $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' ); @@ -442,6 +444,7 @@ public function test_retrieve_core_table_attribute_styles() { ]; $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' ); @@ -514,6 +517,7 @@ public function test_retrieve_core_table_attribute_lock_gradient(): 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' ); @@ -597,6 +601,7 @@ public function test_retrieve_core_table_custom_cell_markup(): 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' );