1 parent acbc5e1 commit 5437442Copy full SHA for 5437442
1 file changed
test/connectors.mjs
@@ -21,6 +21,10 @@ test("Linux release packaging ships pinned connectors for every supported host a
21
});
22
23
test("Linux service working directory resolves the bundled connector without a legacy app-root environment", async (t) => {
24
+ if (process.platform !== "linux") {
25
+ t.skip("Linux systemd working-directory contract");
26
+ return;
27
+ }
28
const root = await mkdtemp(join(tmpdir(), "1helm-linux-connector-root-"));
29
const resources = join(root, "resources");
30
const binary = join(resources, `cloudflared-linux-${process.arch}`);
0 commit comments