added it_get_all_plans_for_index_page test

This commit is contained in:
Peter Papp
2021-03-14 11:36:07 +01:00
parent 71d0005193
commit c5e9d29362
4 changed files with 17 additions and 5 deletions

View File

@@ -472,6 +472,17 @@ class SubscriptionTest extends TestCase
->assertStatus(200);
}
/**
* @test
*/
public function it_get_all_plans_for_index_page()
{
$response = $this->getJson('/api/pricing')
->assertStatus(200);
dd(json_decode($response->content(), true));
}
/**
*
*/