mirror of
https://github.com/withastro/astro.git
synced 2024-12-16 21:46:22 -05:00
Fix smoke tests (#11484)
This commit is contained in:
parent
5b94a34113
commit
ac8dd73afa
2 changed files with 2 additions and 2 deletions
|
@ -7,7 +7,7 @@ export type AstroFactoryReturnValue = RenderTemplateResult | Response | HeadAndC
|
|||
// The callback passed to to $$createComponent
|
||||
export interface AstroComponentFactory {
|
||||
(
|
||||
result: SSRResult,
|
||||
result: any,
|
||||
props: any,
|
||||
slots: any
|
||||
): AstroFactoryReturnValue | Promise<AstroFactoryReturnValue>;
|
||||
|
|
|
@ -6,7 +6,7 @@ import * as path from 'node:path';
|
|||
import pLimit from 'p-limit';
|
||||
import { tsconfigResolverSync } from 'tsconfig-resolver';
|
||||
|
||||
const skippedExamples = ['toolbar-app', 'component']
|
||||
const skippedExamples = ['toolbar-app', 'component', 'server-islands'];
|
||||
|
||||
function checkExamples() {
|
||||
let examples = readdirSync('./examples', { withFileTypes: true });
|
||||
|
|
Loading…
Reference in a new issue