mirror of
https://forge.chapril.org/tykayn/caisse-bliss
synced 2025-06-20 01:44:42 +02:00
18 lines
378 B
PHP
18 lines
378 B
PHP
![]() |
<?php
|
||
|
|
||
|
namespace App\Tests;
|
||
|
|
||
|
use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
|
||
|
|
||
|
class LoginTest extends WebTestCase
|
||
|
{
|
||
|
public function testSomething(): void
|
||
|
{
|
||
|
$client = static::createClient();
|
||
|
$crawler = $client->request('GET', '/');
|
||
|
|
||
|
$this->assertResponseIsSuccessful();
|
||
|
$this->assertSelectorTextContains('h1', 'Hello World');
|
||
|
}
|
||
|
}
|