From 452416d0a489541d00158f9ff42b6d4bdc4e9ea6 Mon Sep 17 00:00:00 2001 From: philipp lang Date: Mon, 1 Jan 2024 18:30:52 +0100 Subject: [PATCH] fix tests --- tests/Feature/Form/FormIndexActionTest.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/Feature/Form/FormIndexActionTest.php b/tests/Feature/Form/FormIndexActionTest.php index 0dc56a7f..5d315d62 100644 --- a/tests/Feature/Form/FormIndexActionTest.php +++ b/tests/Feature/Form/FormIndexActionTest.php @@ -51,6 +51,8 @@ class FormIndexActionTest extends TestCase ->assertInertiaPath('data.meta.default.name', '') ->assertInertiaPath('data.meta.default.description', '') ->assertInertiaPath('data.meta.default.excerpt', '') - ->assertInertiaPath('data.meta.default.config', null); + ->assertInertiaPath('data.meta.default.config', null) + ->assertInertiaPath('data.meta.base_url', url('')) + ->assertInertiaPath('data.meta.section_default.name', ''); } }