Skip to content

Commit

Permalink
[import] Run tests without indexing
Browse files Browse the repository at this point in the history
  • Loading branch information
rastislav-chynoransky committed Dec 13, 2024
1 parent 2400f62 commit dbc18c3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion tests/Importers/GmuRnlImporterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
use Illuminate\Contracts\Translation\Translator;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
use Tests\WithoutSearchIndexing;

class GmuRnlImporterTest extends TestCase
{
use RefreshDatabase;
use RefreshDatabase, WithoutSearchIndexing;

public function testImport()
{
Expand Down
3 changes: 2 additions & 1 deletion tests/Importers/OglImporterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
use Illuminate\Contracts\Translation\Translator;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
use Tests\WithoutSearchIndexing;

class OglImporterTest extends TestCase
{
use RefreshDatabase;
use RefreshDatabase, WithoutSearchIndexing;

public function testId()
{
Expand Down
3 changes: 2 additions & 1 deletion tests/Importers/PnpImporterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
use Illuminate\Contracts\Translation\Translator;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
use Tests\WithoutSearchIndexing;

class PnpImporterTest extends TestCase
{
use RefreshDatabase;
use RefreshDatabase, WithoutSearchIndexing;

public function testId()
{
Expand Down
3 changes: 2 additions & 1 deletion tests/Importers/PnpKarasekImporterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
use Illuminate\Contracts\Translation\Translator;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
use Tests\WithoutSearchIndexing;

class PnpKarasekImporterTest extends TestCase
{
use RefreshDatabase;
use RefreshDatabase, WithoutSearchIndexing;

public function testId()
{
Expand Down

0 comments on commit dbc18c3

Please sign in to comment.