Skip to content

Commit

Permalink
tmp: log b/c failures
Browse files Browse the repository at this point in the history
  • Loading branch information
DDEV User committed Sep 23, 2024
1 parent 664f264 commit ef185f8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/unit/CoreTableTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' );
Expand Down Expand Up @@ -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' );
Expand Down Expand Up @@ -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' );
Expand Down Expand Up @@ -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' );
Expand Down Expand Up @@ -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' );
Expand Down

0 comments on commit ef185f8

Please sign in to comment.