0
Fork 0
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:
Matthew Phillips 2024-07-17 14:56:08 -04:00 committed by GitHub
parent 5b94a34113
commit ac8dd73afa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -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>;

View file

@ -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 });