From ef185f863a8c4f67a8373ee79aa986008ac55c26 Mon Sep 17 00:00:00 2001 From: DDEV User Date: Mon, 23 Sep 2024 20:25:06 +0000 Subject: [PATCH] tmp: log b/c failures --- tests/unit/CoreTableTest.php | 5 +++++ 1 file changed, 5 insertions(+) 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' );