You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Web components default to display inline. But since this tool maintains a list of specific tag names to consider inline it does not include web components.
test('custom components inline',async()=>{constinput='George said <custom-component>Oh, my.</custom-component>';constoutput='George said <custom-component>Oh, my.</custom-component>';expect(awaitminify(input)).toBe(output);});