[ci] format

This commit is contained in:
matthewp 2023-03-31 17:44:00 +00:00 committed by fredkbot
parent d59e511d16
commit 7f8ccbe876
2 changed files with 7 additions and 8 deletions

View file

@ -24,13 +24,12 @@ test.describe('Vue components in MDX files', () => {
});
});
test('test the async vue component in astro', async ({ page, astro }) => {
await page.goto(astro.resolveUrl('/'));
await page.goto(astro.resolveUrl('/'));
const label = page.locator('#client-test');
const label = page.locator('#client-test');
await expect(label, 'component not hydrated').toHaveText('2');
await expect(label, 'component not hydrated').toHaveText('2');
});
test('test the async vue component in mdx', async ({ page, astro }) => {

View file

@ -18,9 +18,9 @@ export default (element) =>
// related to https://github.com/withastro/astro/issues/6549
// if the component is async, wrap it in a Suspense component
if (isAsync(Component.setup)) {
content = h(Suspense, null, content)
content = h(Suspense, null, content);
}
if (client === 'only') {
const app = createApp({ name, render: () => content });
await setup(app);
@ -32,7 +32,7 @@ export default (element) =>
}
};
function isAsync (fn) {
const constructor = fn?.constructor
function isAsync(fn) {
const constructor = fn?.constructor;
return constructor && constructor.name === 'AsyncFunction';
}