[ci] format

This commit is contained in:
matthewp 2023-02-08 15:17:45 +00:00 committed by fredkbot
parent 8bbdcf17dd
commit 86d5479c6f
2 changed files with 5 additions and 3 deletions

View file

@ -120,7 +120,9 @@ describe('CSS ordering - import order', () => {
it('dynamic imports taken into account', async () => {
let html = await fixture.readFile('/one/index.html');
const content = await Promise.all(getLinks(html).map((href) => getLinkContent(href, fixture)));
const content = await Promise.all(
getLinks(html).map((href) => getLinkContent(href, fixture))
);
let [link1, link2] = content;
expect(link1.css).to.contain('aliceblue');
expect(link2.css).to.contain('yellow');