Skip to content

Commit

Permalink
Merge branch '16-retrieve-file-path' of github.com:vormkracht10/larav…
Browse files Browse the repository at this point in the history
…el-open-graph-image into 16-retrieve-file-path
  • Loading branch information
Baspa committed Oct 9, 2023
2 parents db66fc2 + 6c8f245 commit 7fed70d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions tests/OpenGraphTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?php

use Vormkracht10\LaravelOpenGraphImage\Facades\OpenGraphImage;

it('can generate an image using params', function () {
$image = OpenGraphImage::createImageFromParams([
'title' => 'title',
'description' => 'description',
]);

expect($image)->toBeString();
});

0 comments on commit 7fed70d

Please sign in to comment.