Skip to content

Commit 79f2896

Browse files
committed
fix(graph-core): auto-fix import sorting in test file
1 parent 6995060 commit 79f2896

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/graph-core/src/graph-adapter.unit.test.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
* Unit tests for GraphAdapter
33
*/
44

5-
// eslint-disable-next-line n/no-extraneous-import
5+
6+
import type { Edge, Graph, Node } from '@bibgraph/algorithms';
67
import { describe, expect, it, vi } from 'vitest';
78

89
import { GraphAdapter } from './graph-adapter';
9-
import type { Edge, Graph, Node } from '@bibgraph/algorithms';
1010

1111
describe('GraphAdapter', () => {
1212
interface TestNode extends Node {
@@ -25,6 +25,7 @@ describe('GraphAdapter', () => {
2525

2626
/**
2727
* Create a mock Graph instance with Option/Result monad behavior
28+
* @param overrides
2829
*/
2930
const createMockGraph = (overrides?: Partial<Graph<TestNode, TestEdge>>): Graph<TestNode, TestEdge> => {
3031
const mockGraph = {

0 commit comments

Comments
 (0)