mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
[ci] format
This commit is contained in:
parent
cdc28326cf
commit
3df71fd34f
2 changed files with 6 additions and 2 deletions
|
@ -92,7 +92,9 @@ Make sure to use the static attribute syntax (\`${key}={value}\`) instead of the
|
|||
// support object styles for better JSX compat
|
||||
if (key === 'style' && !(value instanceof HTMLString)) {
|
||||
if (Array.isArray(value) && value.length === 2) {
|
||||
return markHTMLString(` ${key}="${toAttributeString(`${toStyleString(value[0])};${value[1]}`, shouldEscape)}"`);
|
||||
return markHTMLString(
|
||||
` ${key}="${toAttributeString(`${toStyleString(value[0])};${value[1]}`, shouldEscape)}"`
|
||||
);
|
||||
}
|
||||
if (typeof value === 'object') {
|
||||
return markHTMLString(` ${key}="${toAttributeString(toStyleString(value), shouldEscape)}"`);
|
||||
|
|
|
@ -61,7 +61,9 @@ describe('Directives', async () => {
|
|||
expect($('style')).to.have.lengthOf(0);
|
||||
|
||||
// Inject style attribute on top-level element in page
|
||||
expect($('#compound-style').attr('style').toString()).to.include('color:var(--fg);--fg: black;--bg: white;');
|
||||
expect($('#compound-style').attr('style').toString()).to.include(
|
||||
'color:var(--fg);--fg: black;--bg: white;'
|
||||
);
|
||||
});
|
||||
|
||||
it('set:html', async () => {
|
||||
|
|
Loading…
Reference in a new issue