1
0
Fork 0
mirror of https://github.com/archtechx/laravel-seo.git synced 2025-12-12 09:54:03 +00:00

Fix raw tag overriding

This commit is contained in:
Samuel Štancl 2021-05-28 17:12:08 +02:00
parent 713e574790
commit 5415e86927
2 changed files with 4 additions and 2 deletions

View file

@ -99,7 +99,9 @@ test('raw tags can be overridden', function () {
seo()->rawTag('foo', '<meta abc>');
seo()->rawTag('foo', '<meta def>');
expect(meta())->toContain('<meta abc>');
expect(meta())
->not()->toContain('<meta abc>')
->toContain('<meta def>');
});
test('canonical url is not included by default', function () {