From 489b205bf565cd6210e1100ab092ae4c1aaaa910 Mon Sep 17 00:00:00 2001 From: Benjamin Lu Date: Mon, 4 Aug 2025 05:17:09 -0400 Subject: [PATCH] [chore] Fix litegraph import after migration to git subtree MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updated import from @comfyorg/litegraph npm package to relative path since browser tests don't have @ alias configured in tsconfig 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- browser_tests/fixtures/ComfyPage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser_tests/fixtures/ComfyPage.ts b/browser_tests/fixtures/ComfyPage.ts index 72445087f..6369d654c 100644 --- a/browser_tests/fixtures/ComfyPage.ts +++ b/browser_tests/fixtures/ComfyPage.ts @@ -1,10 +1,10 @@ -import type { LGraphNode } from '@comfyorg/litegraph' import type { APIRequestContext, Locator, Page } from '@playwright/test' import { expect } from '@playwright/test' import { test as base } from '@playwright/test' import dotenv from 'dotenv' import * as fs from 'fs' +import type { LGraphNode } from '../../src/lib/litegraph/src/litegraph' import type { NodeId } from '../../src/schemas/comfyWorkflowSchema' import type { KeyCombo } from '../../src/schemas/keyBindingSchema' import type { useWorkspaceStore } from '../../src/stores/workspaceStore'