[ci] yarn format

This commit is contained in:
matthewp 2021-07-30 12:34:43 +00:00 committed by GitHub Actions
parent a1491cc659
commit fadb652b95

View file

@ -15,7 +15,7 @@ Vue('Can load Vue', async ({ runtime }) => {
const $ = doc(result.contents); const $ = doc(result.contents);
assert.equal($('h1').text(), 'Hello world!', 'Can use slots'); assert.equal($('h1').text(), 'Hello world!', 'Can use slots');
assert.equal($('button').length, 2, 'Can render components'); assert.equal($('button').length, 2, 'Can render components');
assert.equal($('pre').text(), "5", 'Can render nested components'); assert.equal($('pre').text(), '5', 'Can render nested components');
}); });
Vue.run(); Vue.run();