Skip to content

Commit 56c7553

Browse files
committed
style: fix formatting and merge duplicate imports
1 parent b76adb9 commit 56c7553

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/cli/operations/mcp/__tests__/create-mcp.test.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { SKIP_FOR_NOW } from '../../../tui/screens/mcp/types.js';
2-
import type { AddGatewayTargetConfig } from '../../../tui/screens/mcp/types.js';
3-
import { createExternalGatewayTarget } from '../create-mcp.js';
2+
import type { AddGatewayConfig, AddGatewayTargetConfig } from '../../../tui/screens/mcp/types.js';
3+
import { createExternalGatewayTarget, createGatewayFromWizard, getUnassignedTargets } from '../create-mcp.js';
44
import { afterEach, describe, expect, it, vi } from 'vitest';
55

66
const { mockReadMcpSpec, mockWriteMcpSpec, mockConfigExists, mockReadProjectSpec } = vi.hoisted(() => ({
@@ -132,9 +132,6 @@ describe('createExternalGatewayTarget', () => {
132132
});
133133
});
134134

135-
import { createGatewayFromWizard, getUnassignedTargets } from '../create-mcp.js';
136-
import type { AddGatewayConfig } from '../../../tui/screens/mcp/types.js';
137-
138135
describe('getUnassignedTargets', () => {
139136
afterEach(() => vi.clearAllMocks());
140137

0 commit comments

Comments
 (0)