[ci] yarn format

This commit is contained in:
FredKSchott 2021-08-10 16:52:31 +00:00 committed by GitHub Actions
parent 1350d57997
commit de3af1f4b7

View file

@ -13,7 +13,9 @@ Vue('Can load Vue', async ({ runtime }) => {
assert.ok(!result.error, `build error: ${result.error}`);
const $ = doc(result.contents);
const allPreValues = $('pre').toArray().map((el) => $(el).text());
const allPreValues = $('pre')
.toArray()
.map((el) => $(el).text());
assert.equal(allPreValues, ['0', '1', '10', '100', '1000'], 'renders all components correctly');
assert.equal($('astro-root').length, 4, 'renders 3 astro-roots');
assert.equal($('astro-root[uid]').length, 4, 'all astro-roots have uid attributes');