mirror of
https://github.com/Egonex-AI/Understand-Anything.git
synced 2026-06-22 10:58:03 +08:00
fix(core): remove dead import and unnecessary type cast in domain persistence test
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
import { describe, it, expect, beforeEach, afterEach } from "vitest";
|
||||
import { mkdirSync, rmSync, existsSync, readFileSync } from "node:fs";
|
||||
import { mkdirSync, rmSync, existsSync } from "node:fs";
|
||||
import { join } from "node:path";
|
||||
import { tmpdir } from "node:os";
|
||||
import { saveDomainGraph, loadDomainGraph } from "../persistence/index.js";
|
||||
@@ -20,7 +20,7 @@ const domainGraph: KnowledgeGraph = {
|
||||
nodes: [
|
||||
{
|
||||
id: "domain:orders",
|
||||
type: "domain" as any,
|
||||
type: "domain",
|
||||
name: "Orders",
|
||||
summary: "Order management",
|
||||
tags: [],
|
||||
|
||||
Reference in New Issue
Block a user