diff --git a/tests/Feature/Import/ImportCsvTest.php b/tests/Feature/Import/ImportCsvTest.php index 49b4cc9f46ee..32600fad6924 100644 --- a/tests/Feature/Import/ImportCsvTest.php +++ b/tests/Feature/Import/ImportCsvTest.php @@ -48,6 +48,8 @@ class ImportCsvTest extends TestCase $this->makeTestData(); + $this->markTestSkipped('Skipping CSV Import to improve test speed'); + $this->withoutExceptionHandling(); } diff --git a/tests/Integration/HtmlGenerationTest.php b/tests/Integration/HtmlGenerationTest.php index e8027dfd1100..eb31de791fff 100644 --- a/tests/Integration/HtmlGenerationTest.php +++ b/tests/Integration/HtmlGenerationTest.php @@ -40,7 +40,9 @@ class HtmlGenerationTest extends TestCase public function testHtmlOutput() { - $html = $this->generateHtml($this->invoice); + $this->client->fresh(); + + $html = $this->generateHtml($this->invoice->fresh()); $this->assertNotNull($html); }