import { getters } from '../globalConfig'; describe('globalConfig branding getters', () => { it('treats GoChat as the default branded installation', () => { const state = { installationName: 'GoChat' }; expect(getters.isACustomBrandedInstance(state)).toBe(false); expect(getters.isAChatwootInstance(state)).toBe(true); }); it('recognizes a custom installation name', () => { const state = { installationName: 'Acme Support' }; expect(getters.isACustomBrandedInstance(state)).toBe(true); expect(getters.isAChatwootInstance(state)).toBe(false); }); });