Skip to content

Commit

Permalink
fix(test): make node import paths correct in graph tests
Browse files Browse the repository at this point in the history
  • Loading branch information
ascpixi committed Dec 29, 2024
1 parent 1606582 commit 486b98f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/tests/graph.test.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { describe, expect, it } from "vitest";
import * as flow from "@xyflow/react";
import { graphFromExisting, NOTE_INPUT_HID_MAIN, NOTE_OUTPUT_HID, SIGNAL_INPUT_HID_MAIN, SIGNAL_OUTPUT_HID, VALUE_OUTPUT_HID } from "../graph";
import { createPentatonicChordsNode } from "../nodes/PentatonicChordsNode";
import { createPickNoteNode } from "../nodes/PickNoteNode";
import { createPentatonicChordsNode } from "../nodes/note/PentatonicChordsNode";
import { createPickNoteNode } from "../nodes/note/PickNoteNode";
import { createFinalNode } from "../nodes/FinalNode";
import { uniqueId } from "../util";

Expand Down

0 comments on commit 486b98f

Please sign in to comment.