Skip to content

Commit 85409a1

Browse files
committed
test(tim-compat): gate macOS bundle fixture to Darwin
Compatibility fix for running the selected Tim stack on the fork CI matrix. Source adaptation review: #31. (cherry picked from commit 6edd39a)
1 parent d81cbea commit 85409a1

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

apps/desktop/src/shell/DesktopOpenWith.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ describe("DesktopOpenWith launch resolution", () => {
146146

147147
it.effect("resolves CFBundleExecutable and reports missing bundle executables", () =>
148148
Effect.gen(function* () {
149+
// oxlint-disable-next-line t3code/no-global-process-runtime -- Platform-gated native fixture.
150+
if (process.platform !== "darwin") return;
149151
const fileSystem = yield* FileSystem.FileSystem;
150152
const path = yield* Path.Path;
151153
const base = yield* fileSystem.makeTempDirectoryScoped({ prefix: "t3-open-with-test-" });

0 commit comments

Comments
 (0)