Initial commit for Greenlens

This commit is contained in:
Timo Knuth
2026-03-16 21:31:46 +01:00
parent 307135671f
commit 05d4f6e78b
573 changed files with 54233 additions and 1891 deletions

View File

@@ -0,0 +1,8 @@
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);
});
});