devrait<\/b> marcher/);
expectHtml(el, '#i18n-16').toMatch(/avec un ID explicite/);
+ expectHtml(el, '#i18n-18')
+ .toEqual('');
});
});
}
@@ -161,7 +163,8 @@ const XTB = `
avec un ID explicite
{VAR_PLURAL, plural, =0 {zero} =1 {un} =2 {deux} other {<b>beaucoup</b>} }
- {VAR_PLURAL, plural, =0 {Pas de réponse} =1 {une réponse} other {INTERPOLATION réponse} }
+ {VAR_PLURAL, plural, =0 {Pas de réponse} =1 {une réponse} other {INTERPOLATION réponse} }
+ FOO<a>BAR</a>
`;
const XMB = ` i18n attribute on tags
@@ -187,7 +190,8 @@ const XMB = ` i18n attribute on tags
it <b>should</b> work
with an explicit ID
{VAR_PLURAL, plural, =0 {zero} =1 {one} =2 {two} other {<b>many</b>} }
- {VAR_PLURAL, plural, =0 {Found no results} =1 {Found one result} other {Found INTERPOLATION results} }`;
+ {VAR_PLURAL, plural, =0 {Found no results} =1 {Found one result} other {Found INTERPOLATION results} }
+ foo<a>bar</a>`;
const HTML = `
@@ -240,4 +244,6 @@ const HTML = `
=1 {Found one result}
other {Found {{response.getItemsList().length}} results}
}
+
+
`;