remove unneeded test
All checks were successful
/ ls (pull_request) Successful in 28s

This commit is contained in:
Jonas 2024-06-14 18:52:11 +02:00
parent 4432ee6288
commit b49cb13918
Signed by: lubiana
SSH key fingerprint: SHA256:gkqM8DUX4Blf6P52fycW8ISTd+4eAHH+Uzu9iyc8hAM

View file

@ -12,17 +12,6 @@ final class OrderItemControllerTest extends DbWebTest
{
private string $path = '/order/item/';
public function testIndex(): void
{
$this->client->request('GET', $this->path);
self::assertResponseStatusCodeSame(200);
self::assertPageTitleContains('OrderItem index');
// Use the $crawler to perform additional assertions e.g.
// self::assertSame('Some text on the page', $crawler->filter('.p')->first());
}
public function testNew(): void
{
$this->markTestIncomplete();