diff --git a/tests/Feature/EInvoice/PeppolTest.php b/tests/Feature/EInvoice/PeppolTest.php index 68815f53bf..79563134ab 100644 --- a/tests/Feature/EInvoice/PeppolTest.php +++ b/tests/Feature/EInvoice/PeppolTest.php @@ -320,6 +320,13 @@ class PeppolTest extends TestCase $xml = $peppol->toXml(); + try{ + $processor = new \Saxon\SaxonProcessor(); + } + catch(\Exception $e){ + $this->markTestSkipped('saxon not installed'); + } + $validator = new XsltDocumentValidator($xml); $validator->validate();