mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-08-10 14:58:46 +00:00
* docs: design frontend performance remediation * docs: plan frontend performance remediation * test(frontend): add route asset performance budgets * perf(nginx): compress textual responses safely * perf(frontend): lazy load case study media * perf(frontend): bound static demo file tracing * perf(frontend): restore static locale boundaries * perf(frontend): defer closed workspace panels * perf(frontend): split editors and deduplicate highlighting * perf(frontend): index incremental message derivation * perf(frontend): stabilize paged history cache policy * perf(frontend): bound streaming markdown renders * perf(frontend): virtualize message history * perf(frontend): bound and virtualize chat lists * perf(frontend): suspend inactive decorative animation * perf(browser): stream latest frames as binary * perf(artifacts): stream bounded text previews * docs: finalize performance runtime boundaries * style(backend): apply test formatting * fix(frontend): keep translation functions client-side * perf(frontend): defer decorative animation bundles * test(frontend): lock optimized route budgets * fix: harden frontend performance boundaries * test(frontend): update i18n provider fixture * fix(frontend): preserve sidebar pagination position * style(backend): format artifact range test
65 lines
1.6 KiB
TypeScript
65 lines
1.6 KiB
TypeScript
import { expect, rs, test } from "@rstest/core";
|
|
import { QueryClient, QueryClientProvider } from "@tanstack/react-query";
|
|
import { createElement } from "react";
|
|
import { renderToStaticMarkup } from "react-dom/server";
|
|
|
|
import { I18nContext } from "@/core/i18n/context";
|
|
import { enUS } from "@/core/i18n/locales/en-US";
|
|
import { DEFAULT_LOCAL_SETTINGS } from "@/core/settings/local";
|
|
|
|
const streamMockState = rs.hoisted(() => ({
|
|
options: undefined as { throttle?: boolean | number } | undefined,
|
|
}));
|
|
|
|
rs.mock("@langchain/langgraph-sdk/react", () => ({
|
|
useStream: (options: { throttle?: boolean | number }) => {
|
|
streamMockState.options = options;
|
|
return {
|
|
isLoading: false,
|
|
messages: [],
|
|
stop: async () => undefined,
|
|
submit: async () => undefined,
|
|
values: {
|
|
artifacts: [],
|
|
messages: [],
|
|
title: "",
|
|
todos: [],
|
|
},
|
|
};
|
|
},
|
|
}));
|
|
|
|
test("batches stream subscription updates in a macrotask", async () => {
|
|
const { useThreadStream } = await import("@/core/threads/hooks");
|
|
const queryClient = new QueryClient();
|
|
|
|
function StreamProbe() {
|
|
useThreadStream({
|
|
context: DEFAULT_LOCAL_SETTINGS.context,
|
|
isMock: true,
|
|
threadId: "thread-1",
|
|
});
|
|
return null;
|
|
}
|
|
|
|
renderToStaticMarkup(
|
|
createElement(
|
|
QueryClientProvider,
|
|
{ client: queryClient },
|
|
createElement(
|
|
I18nContext.Provider,
|
|
{
|
|
value: {
|
|
locale: "en-US",
|
|
setLocale: () => undefined,
|
|
t: enUS,
|
|
},
|
|
},
|
|
createElement(StreamProbe),
|
|
),
|
|
),
|
|
);
|
|
|
|
expect(streamMockState.options?.throttle).toBe(true);
|
|
});
|