mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 11:12:43 +01:00
23 lines
430 B
PHP
23 lines
430 B
PHP
<?php
|
|
|
|
namespace Tests\Browser;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Support\Facades\DB;
|
|
use Tests\DuskTestCase;
|
|
use Illuminate\Foundation\Testing\WithFaker;
|
|
use Laravel\Dusk\Browser;
|
|
|
|
class CreateAccountTest extends DuskTestCase
|
|
{
|
|
|
|
use WithFaker;
|
|
|
|
public function testSignupFormDisplayed()
|
|
{
|
|
$response = $this->get('/signup');
|
|
$response->assertStatus(200);
|
|
}
|
|
|
|
}
|