Skip to content

Commit

Permalink
temp: log breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ashutoshgautams committed Sep 24, 2024
1 parent 0d0d0ee commit d5fa769
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/unit/CoreCodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ public function test_retrieve_core_code_attributes() {
];

$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 @@ -195,6 +196,7 @@ public function test_retrieve_core_code_with_custom_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 @@ -273,6 +275,7 @@ public function test_retrieve_core_code_with_gradient_and_additional_attributes(
];

$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 d5fa769

Please sign in to comment.