Skip to content

Commit 8716a57

Browse files
committed
resolve test imports
Signed-off-by: Andrew Twydell <[email protected]>
1 parent 19c4474 commit 8716a57

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

packages/vsce-api/__tests__/__unit__/interfaces.test.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ import { IExtensionAPI } from "../../src/interfaces/IExtensionAPI";
1515
import { IResourceContext } from "../../src/interfaces/IResourceContext";
1616
import { IResourceExtender } from "../../src/interfaces/IResourceExtender";
1717
import { ResourceTypes, SupportedResourceTypes } from "../../src/resources";
18-
import { IProgram, IResource } from "../../src/interfaces/resources";
18+
import { IResource } from "../../src/interfaces/resources";
19+
import { IResourceAction } from "../../src/interfaces/IResourceAction";
1920

2021
describe("Interfaces", () => {
2122
const action: IResourceAction = {

packages/vsce-api/src/interfaces/IResourceAction.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111

1212
import { ResourceTypes } from "../resources";
13-
import { IResource } from "./IResource";
13+
import { IResource } from "./resources";
1414
import { IResourceContext } from "./IResourceContext";
1515

1616
export interface IResourceAction {

packages/vsce-api/src/interfaces/resources/IJVMServer.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
/**
2+
* This program and the accompanying materials are made available under the terms of the
3+
* Eclipse Public License v2.0 which accompanies this distribution, and is available at
4+
* https://www.eclipse.org/legal/epl-v20.html
5+
*
6+
* SPDX-License-Identifier: EPL-2.0
7+
*
8+
* Copyright Contributors to the Zowe Project.
9+
*
10+
*/
11+
112
import { IResourceWithEnableStatus } from "./IResource";
213

314
export interface IJVMServer extends IResourceWithEnableStatus {

packages/vsce/src/commands/disableCommands/disableJVMEndpointCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@
1212
import { CicsCmciConstants, ICMCIApiResponse } from "@zowe/cics-for-zowe-sdk";
1313
import { ProgressLocation, TreeView, commands, window } from "vscode";
1414
import constants from "../../constants/CICS.defaults";
15-
import { IJVMEndpoint, JVMEndpointMeta } from "../../doc";
15+
import { JVMEndpointMeta } from "../../doc";
1616
import { ICommandParams } from "../../doc/commands/ICommandParams";
1717
import { CICSTree } from "../../trees/CICSTree";
1818
import { CICSLogger } from "../../utils/CICSLogger";
1919
import { findSelectedNodes } from "../../utils/commandUtils";
2020
import { runPutResource } from "../../utils/resourceUtils";
21+
import { IJVMEndpoint } from "@zowe/cics-for-zowe-explorer-api";
2122

2223
/**
2324
* Performs disable on selected CICSJVMEndpoint nodes.

packages/vsce/src/commands/enableCommands/enableJVMEndpointCommand.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,13 @@
1212
import { CicsCmciConstants, ICMCIApiResponse } from "@zowe/cics-for-zowe-sdk";
1313
import { ProgressLocation, TreeView, commands, window } from "vscode";
1414
import constants from "../../constants/CICS.defaults";
15-
import { IJVMEndpoint, JVMEndpointMeta } from "../../doc";
15+
import { JVMEndpointMeta } from "../../doc";
1616
import { ICommandParams } from "../../doc/commands/ICommandParams";
1717
import { CICSTree } from "../../trees/CICSTree";
1818
import { CICSLogger } from "../../utils/CICSLogger";
1919
import { findSelectedNodes } from "../../utils/commandUtils";
2020
import { runPutResource } from "../../utils/resourceUtils";
21+
import { IJVMEndpoint } from "@zowe/cics-for-zowe-explorer-api";
2122

2223
/**
2324
* Performs enable on selected CICSJVMEndpoint nodes.

0 commit comments

Comments
 (0)