diff --git a/tests/Command/InstallTest.php b/tests/Command/InstallTest.php index bd4754c..c6db2cc 100644 --- a/tests/Command/InstallTest.php +++ b/tests/Command/InstallTest.php @@ -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'); @@ -53,4 +55,4 @@ ['src/Domain', 'Domain'], ['src/Domains', 'Domains'], ['src/CustomDomainRoot', 'CustomDomainRoot'], -]); +])->skip('Causes issues with autoload tests executed after this test');