diff --git a/tests/Support/Parsers/Shortcodes/UrlShortcodeTest.php b/tests/Support/Parsers/Shortcodes/UrlShortcodeTest.php index 2faf5d05..ba1f1e41 100644 --- a/tests/Support/Parsers/Shortcodes/UrlShortcodeTest.php +++ b/tests/Support/Parsers/Shortcodes/UrlShortcodeTest.php @@ -4,4 +4,7 @@ declare(strict_types=1); test('test registry_get shortcode', function () { $this->assertStringContainsString('http', flextype('shortcode')->process('[url]')); + + flextype('registry')->set('flextype.settings.url', 'https://flextype.org'); + $this->assertStringContainsString('https://flextype.org', flextype('shortcode')->process('[url]')); });