Skip to content

Commit

Permalink
Logging in gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
turbo124 committed Jan 6, 2025
1 parent 6fdd494 commit d6c3373
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/Feature/PurchaseOrderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -113,8 +113,12 @@ public function testPurchaseOrderBulkActions()
$response = $this->withHeaders([
'X-API-SECRET' => config('ninja.api_secret'),
'X-API-TOKEN' => $this->token,
])->post("/api/v1/purchase_orders/bulk", $data)
->assertStatus(200);
])->postJson("/api/v1/purchase_orders/bulk", $data);


echo $response->getContent();

$response->assertStatus(200);


$data = [
Expand Down

0 comments on commit d6c3373

Please sign in to comment.