Remove test until upstream bug is fixed

pull/1807/head
Daniel Supernault 2019-11-10 19:45:59 -07:00
rodzic 0c8327649c
commit 16beb56d21
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 1 dodań i 14 usunięć

Wyświetl plik

@ -5,6 +5,7 @@ namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use App\User;
class LoginTest extends TestCase
{
@ -16,18 +17,4 @@ class LoginTest extends TestCase
$response->assertSee('Forgot Password');
}
/** @test */
public function view_register_page()
{
if(true == config('pixelfed.open_registration')) {
$response = $this->get('register');
$response->assertSee('Register a new account');
} else {
$response = $this->get('register');
$response->assertSee('Registration is closed');
}
}
}