zioinfo-mail/app/node_modules/expo-modules-autolinking/e2e/TestUtils.ts
DESKTOP-TKLFCPR\ython 11c670f2a0 refactor: 101.79.17.164 → zioinfo.co.kr 전체 도메인 변환 + Manager UI 배포
- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스)
- Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포
- 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 10:09:17 +09:00

54 lines
1.4 KiB
TypeScript

import spawnAsync, { SpawnOptions, SpawnResult } from '@expo/spawn-async';
import { spawnSync } from 'child_process';
import { join } from 'path';
export const AUTOLINKINNG_CLI = join(__dirname, '../bin/expo-modules-autolinking.js');
function isSpawnResult(errorOrResult: Error): errorOrResult is Error & SpawnResult {
return 'pid' in errorOrResult && 'stdout' in errorOrResult && 'stderr' in errorOrResult;
}
export async function autolinkingRunAsync(
args: string[],
options?: SpawnOptions
): Promise<SpawnResult> {
const promise = spawnAsync(AUTOLINKINNG_CLI, args, {
...options,
env: { ...process.env, EXPO_SHOULD_USE_LEGACY_PACKAGE_INTERFACE: '1' },
});
try {
return await promise;
} catch (error) {
if (isSpawnResult(error)) {
if (error.stdout) error.message += `\n------\nSTDOUT:\n${error.stdout}`;
if (error.stderr) error.message += `\n------\nSTDERR:\n${error.stderr}`;
}
throw error;
}
}
// For some reason, it can't be async, cause otherwise we will get `yarn did not print valid JSON:` error
export function yarnSync(options?: SpawnOptions) {
spawnSync('yarn', ['install', '--silent'], options);
}
export function combinations<T, U>(
aKey: string,
a: T[],
bKey: string,
b: U[]
): { [key: string]: T | U }[] {
const result = [];
a.forEach(aValue => {
b.forEach(bValue => {
result.push({
[aKey]: aValue,
[bKey]: bValue,
});
});
});
return result;
}