[ci] yarn format
This commit is contained in:
parent
1350d57997
commit
de3af1f4b7
1 changed files with 3 additions and 1 deletions
|
@ -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');
|
||||
|
|
Loading…
Reference in a new issue