(dataDir: string)
| 62 | ); |
| 63 | |
| 64 | const testConfig = (dataDir: string) => ({ |
| 65 | surface: "cli" as const, |
| 66 | version: "0.0.0", |
| 67 | channel: "dev" as const, |
| 68 | dataDir, |
| 69 | disabled: false, |
| 70 | posthogHost: "https://posthog.test", |
| 71 | posthogKey: "phc_test", |
| 72 | flushInterval: Duration.hours(1), |
| 73 | }); |
| 74 | |
| 75 | describe("isAnalyticsDisabled", () => { |
| 76 | it("honors DO_NOT_TRACK and EXECUTOR_DISABLE_ANALYTICS", () => { |