test: fix strict runtime mock types in channel tests

This commit is contained in:
Peter Steinberger
2026-03-03 03:02:56 +00:00
parent 805de8537c
commit da6e6fb900
4 changed files with 36 additions and 15 deletions

View File

@@ -0,0 +1,9 @@
export type ChangedScope = {
runNode: boolean;
runMacos: boolean;
runAndroid: boolean;
};
export function detectChangedScope(changedPaths: string[]): ChangedScope;
export function listChangedPaths(base: string, head?: string): string[];
export function writeGitHubOutput(scope: ChangedScope, outputPath?: string): void;