Skip to content

Commit

Permalink
followRedirects in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
oallain committed Sep 22, 2023
1 parent 5a3c4bd commit 7476434
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions tests/PHPUnit/Controller/ExportDataControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,16 @@
namespace Tests\Synolia\SyliusGDPRPlugin\PHPUnit\Controller;

use Symfony\Bundle\FrameworkBundle\Test\WebTestCase;
use Symfony\Component\HttpKernel\Kernel;

class ExportDataControllerTest extends WebTestCase
{
public function testExportDataWithCart(): void
{
if (Kernel::MAJOR_VERSION < 6) {
$this->markTestSkipped('Test on for Symfony 6+');
}

$client = static::createClient();

// login a user
Expand Down

0 comments on commit 7476434

Please sign in to comment.