Add hosted synthetic control plane
This commit is contained in:
parent
af04875107
commit
8dcbcd2201
21 changed files with 3695 additions and 772 deletions
|
|
@ -28,6 +28,7 @@ import {
|
|||
mergeNewestWithOverflow,
|
||||
normalizeAlertSeverity,
|
||||
nextFlowFilterPopoverState,
|
||||
isSyntheticAdminVisible,
|
||||
prunePinnedEntries,
|
||||
projectPausableTapeState,
|
||||
reducePausableTapeData,
|
||||
|
|
@ -407,6 +408,13 @@ describe("terminal navigation", () => {
|
|||
});
|
||||
});
|
||||
|
||||
describe("synthetic admin visibility", () => {
|
||||
it("shows the internal control rail only when the public admin flag is enabled", () => {
|
||||
expect(isSyntheticAdminVisible("1")).toBe(true);
|
||||
expect(isSyntheticAdminVisible("0")).toBe(false);
|
||||
});
|
||||
});
|
||||
|
||||
describe("live tape pausable helpers", () => {
|
||||
it("queues new items while paused and flushes them on resume", () => {
|
||||
let state = reducePausableTapeData(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue