Skip to content

Commit

Permalink
Fix test removing gitkeep file
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Dec 6, 2024
1 parent 88ef637 commit 60d06cd
Showing 1 changed file with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ public function testCanCompilePublicationPagesWithRegisteredView()
$schema = json_decode(file_get_contents(Hyde::path('test-publication/schema.json')));
$schema->detailTemplate = 'foo';
file_put_contents(Hyde::path('test-publication/schema.json'), json_encode($schema));
$this->directory('resources/views');
$this->file('resources/views/foo.blade.php', 'Registered detail view');

$publicationPage = new PublicationPage('my-publication', type: PublicationType::get('test-publication'));
Expand All @@ -62,7 +61,6 @@ public function testCanCompileListPagesWithRegisteredView()
$schema = json_decode(file_get_contents(Hyde::path('test-publication/schema.json')));
$schema->listTemplate = 'foo';
file_put_contents(Hyde::path('test-publication/schema.json'), json_encode($schema));
$this->directory('resources/views');
$this->file('resources/views/foo.blade.php', 'Registered list view');

$publicationType = PublicationType::get('test-publication');
Expand Down

0 comments on commit 60d06cd

Please sign in to comment.