From f794100ce1d7c058a234ab39df34487bb6f57b8d Mon Sep 17 00:00:00 2001 From: Yevgeny Tomenko Date: Sat, 5 Oct 2024 00:06:17 +0300 Subject: [PATCH] debug issue in action build --- .../Integration/Service/Action/Auth/JwtLoginActionTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestCase/Integration/Service/Action/Auth/JwtLoginActionTest.php b/tests/TestCase/Integration/Service/Action/Auth/JwtLoginActionTest.php index 9162999..98ef83c 100644 --- a/tests/TestCase/Integration/Service/Action/Auth/JwtLoginActionTest.php +++ b/tests/TestCase/Integration/Service/Action/Auth/JwtLoginActionTest.php @@ -64,6 +64,7 @@ public function tearDown(): void public function testSuccessLogin() { $this->sendRequest('/auth/jwt_login', 'POST', ['username' => 'user-1', 'password' => '12345']); + print_r((string)$this->_response->getBody()); $result = $this->getJsonResponse(); $this->assertSuccess($result); $this->assertTrue(is_array($result['data']));