Skip to content

Commit

Permalink
fix(structure): add workaround for circular import issue causing reso…
Browse files Browse the repository at this point in the history
…lveIntent tests to fail
  • Loading branch information
bjoerge committed Jan 20, 2024
1 parent 8e49737 commit 98b17d1
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit 98b17d1

Please sign in to comment.