Skip to content

Commit b0a9f5e

Browse files
committed
test(analyzer): enable tree integration tests
Remove .skip after optimizing isTree/isForest predicates that caused hanging during test execution.
1 parent b2fd743 commit b0a9f5e

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/__tests__/integration/tree.integration.test.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,7 @@ import { generateGraph } from "../../generation/generator";
1212
import { makeGraphSpec } from "../../generation/spec";
1313
import { toAnalyzerGraph } from "./helpers";
1414

15-
// KNOWN ISSUE: This test file hangs during vitest execution (even in isolation).
16-
// The issue appears to be in module resolution/loading, not test execution.
17-
// Other integration tests in this directory work fine. Investigation pending.
18-
// Run with: pnpm vitest run --no-coverage src/__tests__/integration/tree.integration.test.ts
19-
describe.skip("Tree Graph Class", { timeout: 30_000 }, () => {
15+
describe("Tree Graph Class", { timeout: 30_000 }, () => {
2016
describe("generation and classification roundtrip", () => {
2117
it("should generate and classify a tree correctly", () => {
2218
const spec = makeGraphSpec({

0 commit comments

Comments
 (0)