diff --git a/tests/PdfTest.php b/tests/PdfTest.php index 1516f12..7232c70 100644 --- a/tests/PdfTest.php +++ b/tests/PdfTest.php @@ -49,7 +49,7 @@ 'Body html', 'Footer html', ]); -})->skipOnLinux(); +}); it('can render header html', function () { Pdf::html('Body html') @@ -60,7 +60,7 @@ 'This is the header HTML: Header title', 'Body html', ]); -})->skipOnLinux(); +}); it('can render footer html', function () { Pdf::html('Body html') @@ -71,7 +71,7 @@ 'This is the footer HTML: Footer title', 'Body html', ]); -})->skipOnLinux(); +}); it('can create a pdf using the facade', function () { Pdf::view('test')->save($this->targetPath); @@ -99,7 +99,7 @@ expect($this->targetPath) ->toHaveDimensions(419, 595) ->toContainText('This is a test'); -})->skipOnLinux(); +}); it('can accept the orientation', function () { Pdf::view('test')