Skip to content

Commit

Permalink
Fix error in test case
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-layson committed Apr 5, 2024
1 parent ad5acad commit 8f6a6cb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/Filament/PageResourceTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,9 @@ public function test_can_save_seo(): void
{
$data = $this->generateModel(true);
$data['seo.description'] = 'Test Description';
$data['is_draft'] = 0;
$data['publish_at'] = now()->subday();
$data['expire_at'] = now()->addDay();

Livewire::test(TargetResource\Pages\CreatePage::class)
->fillForm($data)
Expand Down

0 comments on commit 8f6a6cb

Please sign in to comment.