19 lines
380 B
PHP
19 lines
380 B
PHP
<?php
|
|
|
|
namespace Modules\Contribution\Components;
|
|
|
|
use Tests\TestCase;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
uses(TestCase::class);
|
|
uses(DatabaseTransactions::class);
|
|
|
|
beforeEach(function () {
|
|
test()->login()->loginNami();
|
|
});
|
|
|
|
it('displays page', function () {
|
|
test()->get(route('contribution.index'))
|
|
->assertSeeLivewire(FillList::class);
|
|
});
|