mirror of
https://github.com/withastro/astro.git
synced 2025-02-17 22:44:24 -05:00
[ci] format
This commit is contained in:
parent
d59e511d16
commit
7f8ccbe876
2 changed files with 7 additions and 8 deletions
|
@ -24,7 +24,6 @@ test.describe('Vue components in MDX files', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
test('test the async vue component in astro', async ({ page, astro }) => {
|
test('test the async vue component in astro', async ({ page, astro }) => {
|
||||||
await page.goto(astro.resolveUrl('/'));
|
await page.goto(astro.resolveUrl('/'));
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ export default (element) =>
|
||||||
// related to https://github.com/withastro/astro/issues/6549
|
// related to https://github.com/withastro/astro/issues/6549
|
||||||
// if the component is async, wrap it in a Suspense component
|
// if the component is async, wrap it in a Suspense component
|
||||||
if (isAsync(Component.setup)) {
|
if (isAsync(Component.setup)) {
|
||||||
content = h(Suspense, null, content)
|
content = h(Suspense, null, content);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (client === 'only') {
|
if (client === 'only') {
|
||||||
|
@ -32,7 +32,7 @@ export default (element) =>
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function isAsync (fn) {
|
function isAsync(fn) {
|
||||||
const constructor = fn?.constructor
|
const constructor = fn?.constructor;
|
||||||
return constructor && constructor.name === 'AsyncFunction';
|
return constructor && constructor.name === 'AsyncFunction';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue