const { SEARCH_INTENT_CONFIG: rootConfig } = require('../../constants/searchIntentConfig'); const { SEARCH_INTENT_CONFIG: serverConfig } = require('../../server/lib/searchIntentConfig'); describe('search intent config parity', () => { it('keeps root and server semantic intent config in sync', () => { expect(serverConfig).toEqual(rootConfig); }); });