test: improve Parallels beta validation

This commit is contained in:
Peter Steinberger
2026-05-04 04:43:18 +01:00
parent 616a4e9782
commit a8b38bb742
10 changed files with 351 additions and 38 deletions

View File

@@ -375,6 +375,12 @@ console.log(JSON.stringify(result));
}
});
it("runs POSIX guest shell scripts with a normal install umask", () => {
const guestTransports = readFileSync(TS_PATHS.guestTransports, "utf8");
expect(guestTransports.match(/umask 022/g)).toHaveLength(2);
});
it("provisions portable Git before Windows dev update lanes", () => {
const script = readFileSync(TS_PATHS.windows, "utf8");
const windowsGit = readFileSync(TS_PATHS.windowsGit, "utf8");