[ci] format
This commit is contained in:
parent
01c1aaa003
commit
24bad5a0ad
1 changed files with 4 additions and 8 deletions
|
@ -12,8 +12,8 @@ describe('CSS ordering - import order', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* @param {string} html
|
* @param {string} html
|
||||||
* @returns {string[]}
|
* @returns {string[]}
|
||||||
*/
|
*/
|
||||||
function getLinks(html) {
|
function getLinks(html) {
|
||||||
|
@ -84,9 +84,7 @@ describe('CSS ordering - import order', () => {
|
||||||
it('Page level CSS is defined lower in the page', async () => {
|
it('Page level CSS is defined lower in the page', async () => {
|
||||||
let html = await fixture.readFile('/index.html');
|
let html = await fixture.readFile('/index.html');
|
||||||
|
|
||||||
const content = await Promise.all(
|
const content = await Promise.all(getLinks(html).map((href) => getLinkContent(href)));
|
||||||
getLinks(html).map((href) => getLinkContent(href))
|
|
||||||
);
|
|
||||||
|
|
||||||
const [{ css }] = content;
|
const [{ css }] = content;
|
||||||
let idx1 = css.indexOf('salmon');
|
let idx1 = css.indexOf('salmon');
|
||||||
|
@ -98,9 +96,7 @@ describe('CSS ordering - import order', () => {
|
||||||
it('import order is depth-first', async () => {
|
it('import order is depth-first', async () => {
|
||||||
let html = await fixture.readFile('/component/index.html');
|
let html = await fixture.readFile('/component/index.html');
|
||||||
|
|
||||||
const content = await Promise.all(
|
const content = await Promise.all(getLinks(html).map((href) => getLinkContent(href)));
|
||||||
getLinks(html).map((href) => getLinkContent(href))
|
|
||||||
);
|
|
||||||
|
|
||||||
const [{ css }] = content;
|
const [{ css }] = content;
|
||||||
let idx1 = css.indexOf('whitesmoke');
|
let idx1 = css.indexOf('whitesmoke');
|
||||||
|
|
Loading…
Reference in a new issue