Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Dec 26, 2023
1 parent 97ecd53 commit 444167b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/PdfTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
Pdf::view('test')->margins(200)->save($this->targetPath);

assertMatchesPdfSnapshot($this->targetPath);
})->skip('This test is flaky on Github Actions');
})->skipOnLinux();

it('can accept some html', function () {
Pdf::html('<h1>Some custom HTML</h1>')->save($this->targetPath);
Expand Down Expand Up @@ -49,7 +49,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 444167b

Please sign in to comment.