mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-08 00:50:05 +00:00
## Summary This PR manually backports the telemetry provider implementation to the rh-test branch after the automated backport failed due to merge conflicts. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6155-Manual-backport-add-telemetry-provider-for-cloud-distribution-2926d73d3650812e94e2fe0bd5e9bc59) by [Unito](https://www.unito.io) --------- Co-authored-by: Claude <noreply@anthropic.com>
31 lines
799 B
TypeScript
31 lines
799 B
TypeScript
import { beforeEach, describe, expect, it, vi } from 'vitest'
|
|
|
|
vi.mock('@/platform/distribution/types', () => ({
|
|
isCloud: false
|
|
}))
|
|
|
|
describe('useTelemetry', () => {
|
|
beforeEach(() => {
|
|
vi.clearAllMocks()
|
|
})
|
|
|
|
it('should return null when not in cloud distribution', async () => {
|
|
const { useTelemetry } = await import('@/platform/telemetry')
|
|
const provider = useTelemetry()
|
|
|
|
// Should return null for OSS builds
|
|
expect(provider).toBeNull()
|
|
})
|
|
|
|
it('should return null consistently for OSS builds', async () => {
|
|
const { useTelemetry } = await import('@/platform/telemetry')
|
|
|
|
const provider1 = useTelemetry()
|
|
const provider2 = useTelemetry()
|
|
|
|
// Both should be null for OSS builds
|
|
expect(provider1).toBeNull()
|
|
expect(provider2).toBeNull()
|
|
})
|
|
})
|