From 3b203d70ff9079bc47ca6ad123657181ab5e4cb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Mon, 24 May 2021 11:41:25 +0200 Subject: [PATCH] One more Blade Flipp test --- tests/Pest/FlippTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Pest/FlippTest.php b/tests/Pest/FlippTest.php index 369e710..bb5c0f9 100644 --- a/tests/Pest/FlippTest.php +++ b/tests/Pest/FlippTest.php @@ -49,4 +49,5 @@ test('the blade directive can be used with flipp', function () { seo()->title('foo')->description('bar'); expect(blade("@seo('flipp', 'blog')"))->toBe(seo()->flipp('blog')); + expect(blade("@seo('flipp', 'blog', ['title' => 'abc'])"))->toBe(seo()->flipp('blog', ['title' => 'abc'])); });