mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-03 06:47:33 +00:00
## Summary
Backport of #6246 to `rh-test` branch.
This PR cherry-picks commit d7a58a7a9b to
the `rh-test` branch with merge conflicts resolved.
### Conflicts Resolved
**GraphCanvas.vue:**
- Accepted incoming template structure changes (removed betaMenuEnabled
check, added workflow tabs)
- Added missing imports: TopbarBadges, WorkflowTabs, isNativeWindow
- Added showUI computed property
**cloudBadge.ts:**
- Deleted file (replaced by cloudBadges.ts plural)
**telemetry/types.ts:**
- Merged interface methods from both branches
- Accepted incoming event constant changes (app: prefix)
Original PR: #6246
┆Issue is synchronized with this [Notion
page](https://www.notion.so/PR-6257-backport-rh-test-change-cloud-feature-flags-to-be-loaded-dynamically-at-runtime-rather--2966d73d365081a59daeeb6dfbbf2af5)
by [Unito](https://www.unito.io)
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import { vi } from 'vitest'
|
|
import 'vue'
|
|
|
|
// Augment Window interface for tests
|
|
declare global {
|
|
interface Window {
|
|
__CONFIG__: {
|
|
mixpanel_token?: string
|
|
subscription_required?: boolean
|
|
server_health_alert?: string
|
|
}
|
|
}
|
|
}
|
|
|
|
// Define global variables for tests
|
|
// @ts-expect-error - Global variables are defined in global.d.ts
|
|
globalThis.__COMFYUI_FRONTEND_VERSION__ = '1.24.0'
|
|
// @ts-expect-error - Global variables are defined in global.d.ts
|
|
globalThis.__SENTRY_ENABLED__ = false
|
|
// @ts-expect-error - Global variables are defined in global.d.ts
|
|
globalThis.__SENTRY_DSN__ = ''
|
|
// @ts-expect-error - Global variables are defined in global.d.ts
|
|
globalThis.__ALGOLIA_APP_ID__ = ''
|
|
// @ts-expect-error - Global variables are defined in global.d.ts
|
|
globalThis.__ALGOLIA_API_KEY__ = ''
|
|
// @ts-expect-error - Global variables are defined in global.d.ts
|
|
globalThis.__USE_PROD_CONFIG__ = false
|
|
globalThis.__DISTRIBUTION__ = 'localhost'
|
|
|
|
// Define runtime config for tests
|
|
window.__CONFIG__ = {
|
|
subscription_required: true,
|
|
mixpanel_token: 'test-token'
|
|
}
|
|
|
|
// Mock Worker for extendable-media-recorder
|
|
globalThis.Worker = vi.fn().mockImplementation(() => ({
|
|
postMessage: vi.fn(),
|
|
terminate: vi.fn(),
|
|
addEventListener: vi.fn(),
|
|
removeEventListener: vi.fn(),
|
|
dispatchEvent: vi.fn()
|
|
}))
|