We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de3d727 commit ed92c83Copy full SHA for ed92c83
1 file changed
airflow-core/src/airflow/ui/src/layouts/Details/Graph/Graph.test.tsx
@@ -25,6 +25,10 @@ import { Wrapper } from "src/utils/Wrapper";
25
26
import { Graph } from "./Graph";
27
28
+// testsSetup.ts globally mocks Graph to null so full-page tests don't need to
29
+// stub ELK layout data. Unmock it here so we test the real component.
30
+vi.unmock("src/layouts/Details/Graph/Graph");
31
+
32
let mockParams: Record<string, string> = { dagId: "test_dag" };
33
34
vi.mock("react-router-dom", async () => {
0 commit comments