Skip to content

Commit

Permalink
Attempt isolating single test.
Browse files Browse the repository at this point in the history
  • Loading branch information
JasperTey committed Sep 2, 2024
1 parent 1cd4200 commit ddc860f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/Command/InstallTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@

use Illuminate\Support\Facades\Config;

beforeEach()->skip('Seems to cause autoload tests to fail if this is run before them');
beforeEach(function () {
$this->setupTestApplication();
});

it('publishes config', function () {
$path = config_path('ddd.php');
Expand Down Expand Up @@ -53,4 +55,4 @@
['src/Domain', 'Domain'],
['src/Domains', 'Domains'],
['src/CustomDomainRoot', 'CustomDomainRoot'],
]);
])->skip('Causes issues with autoload tests executed after this test');

0 comments on commit ddc860f

Please sign in to comment.