test: remove test of index page

This commit is contained in:
Maël Gangloff 2025-10-16 02:41:24 +02:00
parent 7a2f3531fa
commit 39c546969c
No known key found for this signature in database
GPG Key ID: 11FDC81C24A7F629
2 changed files with 1 additions and 9 deletions

View File

@ -101,7 +101,7 @@ jobs:
tests:
name: Tests
runs-on: ubuntu-latest
needs: [ php-setup, cs-fixer, phpstan, eslint ]
needs: [ php-setup, cs-fixer, phpstan ]
services:
postgres:
image: postgres

View File

@ -6,14 +6,6 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
class HomeControllerTest extends WebTestCase
{
public function testIndex(): void
{
$client = static::createClient();
$client->request('GET', '/');
$this->assertResponseIsSuccessful();
}
public function testConnectSsoReturnNotFound(): void
{
$client = static::createClient();