diff --git a/packages/sanity/src/structure/structureResolvers/__tests__/resolveIntent.test.ts b/packages/sanity/src/structure/structureResolvers/__tests__/resolveIntent.test.ts index a92acb6e4dd..7dda8fed27d 100644 --- a/packages/sanity/src/structure/structureResolvers/__tests__/resolveIntent.test.ts +++ b/packages/sanity/src/structure/structureResolvers/__tests__/resolveIntent.test.ts @@ -1,5 +1,8 @@ -import {getMockSource} from '../../../../test/testUtils/getMockWorkspaceFromConfig' import {createStructureBuilder, SerializeError} from '../../structureBuilder' +/* eslint-disable import/order */ +/* this has to be imported after createStructureBuilder due to what looks like a circular import issue */ +import {getMockSource} from '../../../../test/testUtils/getMockWorkspaceFromConfig' +/* eslint-enable import/order */ import {PaneNode, UnresolvedPaneNode} from '../../types' import {PaneResolutionError} from '../PaneResolutionError' import {resolveIntent} from '../resolveIntent'