Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Dec 29, 2023
1 parent 09e95b2 commit 181b43f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/PdfTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
'Body html',
'Footer html',
]);
})->skipOnLinux();
});

it('can render header html', function () {
Pdf::html('Body html')
Expand All @@ -60,7 +60,7 @@
'This is the header HTML: Header title',
'Body html',
]);
})->skipOnLinux();
});

it('can render footer html', function () {
Pdf::html('Body html')
Expand All @@ -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);
Expand Down Expand Up @@ -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')
Expand Down

0 comments on commit 181b43f

Please sign in to comment.