Apply the accepted pre-release package, service, type, directory, and role renames as one repository-wide change.
23 lines
1001 B
TypeScript
23 lines
1001 B
TypeScript
import { describe, expect, it } from 'vitest'
|
|
import { resolveTelemetryPatch } from '../src/profile-boot.ts'
|
|
|
|
describe('resolveTelemetryPatch', () => {
|
|
it('preserves the configured telemetry mode when the hard-disable switch is unset or empty', () => {
|
|
expect(resolveTelemetryPatch(undefined, true)).toBeUndefined()
|
|
expect(resolveTelemetryPatch('', true)).toBeUndefined()
|
|
})
|
|
|
|
it('disables on ANY non-empty value, including falsy-looking ones', () => {
|
|
for (const value of ['1', '0', 'false', 'no']) {
|
|
expect(resolveTelemetryPatch(value, true)).toEqual({ id: 'session-telemetry-otel', disabled: true })
|
|
}
|
|
})
|
|
|
|
it('is trivially satisfied by a composition without the telemetry row', () => {
|
|
// A custom profile need not mount telemetry: nothing exports, so the
|
|
// privacy switch has nothing to disable and generates no patch.
|
|
expect(resolveTelemetryPatch('1', false)).toBeUndefined()
|
|
expect(resolveTelemetryPatch(undefined, false)).toBeUndefined()
|
|
})
|
|
})
|