checkpoint: pre-split branch cleanup

This commit is contained in:
ZenchantLive 2026-03-03 16:43:42 -08:00
parent 4c2ae2e5b7
commit b5db7a7753
276 changed files with 35912 additions and 60119 deletions

View file

@ -50,7 +50,7 @@ describe('URL State Integration - bb-ui2.22', () => {
const sp = createMockSearchParams({ view: 'graph' });
const state = parseUrlState(sp);
assert.strictEqual(state.view, 'graph');
assert.strictEqual(state.graphTab, 'flow');
assert.strictEqual(state.graphTab, 'overview');
});
it('/?view=graph&task=bb-buff.1 - graph with task selected', () => {
@ -135,7 +135,7 @@ describe('URL State Integration - bb-ui2.22', () => {
it('/?view=graph&graphTab=invalid - invalid graphTab defaults to flow', () => {
const sp = createMockSearchParams({ view: 'graph', graphTab: 'invalid' });
const state = parseUrlState(sp);
assert.strictEqual(state.graphTab, 'flow');
assert.strictEqual(state.graphTab, 'overview');
});
it('/?panel=invalid - invalid panel defaults to open', () => {