From d5cc436bcb57672a8d0022e9d522f867df1e7362 Mon Sep 17 00:00:00 2001 From: Lentil Hoffman Date: Sun, 15 Jun 2025 12:32:26 -0500 Subject: [PATCH] chore: remove unused _RhizomeImports from test files - Removed unused _RhizomeImports from: - __tests__/compose-decompose.ts - __tests__/transactions.ts - __tests__/negation.ts - All tests continue to pass after removal --- __tests__/compose-decompose.ts | 1 - __tests__/negation.ts | 1 - __tests__/transactions.ts | 1 - 3 files changed, 3 deletions(-) diff --git a/__tests__/compose-decompose.ts b/__tests__/compose-decompose.ts index 58c9318..d3b64fd 100644 --- a/__tests__/compose-decompose.ts +++ b/__tests__/compose-decompose.ts @@ -1,4 +1,3 @@ -import * as _RhizomeImports from "../src"; /** * Tests for lossless view compose() and decompose() bidirectional conversion * Ensures that deltas can be composed into lossless views and decomposed back diff --git a/__tests__/negation.ts b/__tests__/negation.ts index 7193a75..5bdee41 100644 --- a/__tests__/negation.ts +++ b/__tests__/negation.ts @@ -1,4 +1,3 @@ -import * as _RhizomeImports from "../src"; import { Delta } from '../src/core'; import { NegationHelper } from '../src/features'; import { RhizomeNode } from '../src/node'; diff --git a/__tests__/transactions.ts b/__tests__/transactions.ts index 1fc0c74..46c4db3 100644 --- a/__tests__/transactions.ts +++ b/__tests__/transactions.ts @@ -1,4 +1,3 @@ -import * as _RhizomeImports from "../src"; import { Delta } from '../src/core'; import { Lossless } from '../src/views'; import { RhizomeNode } from '../src/node';