Skip to content

Commit

Permalink
update test
Browse files Browse the repository at this point in the history
  • Loading branch information
erral committed Jan 22, 2025
1 parent 35e93bf commit 84963e2
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,12 +73,12 @@ describe('AlternateHrefLangs', () => {
expect(helmetLinks).toContainEqual({
rel: 'alternate',
href: '/es',
hreflang: 'es',
hrefLang: 'es',
});
expect(helmetLinks).toContainEqual({
rel: 'alternate',
href: '/en',
hreflang: 'en',
hrefLang: 'en',
});
});
it('multilingual site, with all available translations', () => {
Expand Down Expand Up @@ -119,17 +119,17 @@ describe('AlternateHrefLangs', () => {
expect(helmetLinks).toContainEqual({
rel: 'alternate',
href: '/eu',
hreflang: 'eu',
hrefLang: 'eu',
});
expect(helmetLinks).toContainEqual({
rel: 'alternate',
href: '/es',
hreflang: 'es',
hrefLang: 'es',
});
expect(helmetLinks).toContainEqual({
rel: 'alternate',
href: '/en',
hreflang: 'en',
hrefLang: 'en',
});
});
});

0 comments on commit 84963e2

Please sign in to comment.