You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
373 B
19 lines
373 B
<?php
|
|
|
|
namespace Tests\Feature\Invoices;
|
|
|
|
use Tests\TestCase;
|
|
|
|
class ManageInvoiceTest extends TestCase
|
|
{
|
|
/** @test */
|
|
public function user_can_browse_invoice_list_page()
|
|
{
|
|
$this->adminUserSigningIn();
|
|
|
|
$this->visit(route('invoices.index'));
|
|
|
|
$this->seePageIs(route('invoices.index'));
|
|
$this->see(trans('invoice.list'));
|
|
}
|
|
}
|