import { describe, expect, it } from 'vitest'; import { buildLookerReconcileNotes } from '../../../../../src/context/ingest/adapters/looker/reconcile.js'; describe('buildLookerReconcileNotes', () => { it('instructs reconciliation to record subsumed provenance', () => { expect(buildLookerReconcileNotes()).toEqual([ [ 'Looker runtime API-derived SL sources use looker____.', 'If the unprefixed file-adapter source __ exists, prefer it in wiki sl_refs, delete or avoid the API-derived source, and call emit_artifact_resolution with actionType="subsumed" for the API raw explore path.', ].join(' '), ]); }); });