Skip to content

Commit c167df4

Browse files
committed
format cleanup to appease prettier --check
1 parent feb6675 commit c167df4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

tests/unit/transform.test.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ describe('transformCSS', () => {
5555
<link id="the-link" media="screen" title="stylish" rel="stylesheet" href="/sample.css"/>
5656
`;
5757
let link = document.querySelector('link') as HTMLLinkElement;
58-
const styleData = [
59-
{ el: link, css: 'html { margin: 0; }', changed: true },
60-
];
58+
const styleData = [{ el: link, css: 'html { margin: 0; }', changed: true }];
6159
const inlineStyles = new Map();
6260
const promise = transformCSS(styleData, inlineStyles, true);
6361
link = document.querySelector('link') as HTMLLinkElement;

0 commit comments

Comments
 (0)