mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-04 17:43:36 +00:00
31 lines
977 B
TypeScript
31 lines
977 B
TypeScript
// iOS version test support provides shared fixtures for iOS script tests.
|
|
import fs from "node:fs";
|
|
import path from "node:path";
|
|
import { afterEach } from "vitest";
|
|
import { cleanupTempDirs, makeTempDir } from "../helpers/temp-dir.js";
|
|
|
|
const tempDirs: string[] = [];
|
|
|
|
export function installIosFixtureCleanup(): void {
|
|
afterEach(() => {
|
|
cleanupTempDirs(tempDirs);
|
|
});
|
|
}
|
|
|
|
export function writeIosFixture(params: {
|
|
version?: string;
|
|
changelog: string;
|
|
packageVersion?: string;
|
|
prefix?: string;
|
|
}): string {
|
|
const rootDir = makeTempDir(tempDirs, params.prefix ?? "openclaw-ios-version-");
|
|
fs.mkdirSync(path.join(rootDir, "apps", "ios"), { recursive: true });
|
|
fs.writeFileSync(
|
|
path.join(rootDir, "package.json"),
|
|
`${JSON.stringify({ version: params.packageVersion ?? params.version ?? "2026.4.6" }, null, 2)}\n`,
|
|
"utf8",
|
|
);
|
|
fs.writeFileSync(path.join(rootDir, "apps", "ios", "CHANGELOG.md"), params.changelog, "utf8");
|
|
return rootDir;
|
|
}
|