Skip to content

Commit 26f236a

Browse files
committed
Fix merge conflict resolution
Signed-off-by: Timothy Johnson <timothy.johnson@broadcom.com>
1 parent ee350a3 commit 26f236a

4 files changed

Lines changed: 106 additions & 61 deletions

File tree

packages/eslint-plugin-zowe-explorer/lib/rules/no-floating-promises.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const path = require("path");
77
const rewire = require("rewire");
88
const tsutils = require("tsutils");
99
const eslintPluginPath = path.dirname(require.resolve("@typescript-eslint/eslint-plugin"));
10-
const oldRule = rewire( eslintPluginPath + "/rules/no-floating-promises");
10+
const oldRule = rewire(eslintPluginPath + "/rules/no-floating-promises");
1111
const oldIsPromiseLike = oldRule.__get__("isPromiseLike");
1212
oldRule.__set__("isPromiseLike", (checker, node) => {
1313
const type = checker.getTypeAtLocation(node);

packages/zowe-explorer/__tests__/__unit__/trees/shared/SharedInit.unit.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import * as vscode from "vscode";
1414
import * as core from "@zowe/core-for-zowe-sdk";
1515
import * as profUtils from "../../../../src/utils/ProfilesUtils";
1616
import * as SharedHistoryView from "../../../../src/trees/shared/SharedHistoryView";
17-
import { IviIt, ITestContext, processSubscriptions } from "../../../__common__/testUtils";
17+
import { IJestIt, ITestContext, processSubscriptions } from "../../../__common__/testUtils";
1818
import { Constants } from "../../../../src/configuration/Constants";
1919
import { Profiles } from "../../../../src/configuration/Profiles";
2020
import { SharedActions } from "../../../../src/trees/shared/SharedActions";
@@ -80,7 +80,7 @@ describe("Test src/shared/extension", () => {
8080
const onProfileUpdated = vi.fn().mockReturnValue(new vscode.Disposable(vi.fn()));
8181
const mockOnProfileUpdated = new MockedProperty(ZoweExplorerApiRegister.getInstance(), "onProfileUpdated", undefined, onProfileUpdated);
8282

83-
const commands: IviIt[] = [
83+
const commands: IJestIt[] = [
8484
{
8585
name: "zowe.updateSecureCredentials",
8686
parm: ["@zowe/cli"],

packages/zowex-for-zowe-explorer/package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@
2323
"clean": "rimraf bin lib coverage",
2424
"license": "node ../../scripts/updateLicenses.mjs",
2525
"link:zowex": "node ../../scripts/linkZowex.js",
26-
"newlint": "concurrently -n \"_eslint_,prettier\" \"pnpm lint:all\" \"pnpm lint:pretty\"",
27-
"newlint:html": "(mkdir -p \"results\" || true) && eslint . --format html > results/eslint.html",
2826
"lint": "concurrently -n \"_eslint_,prettier\" \"pnpm lint:src\" \"pnpm lint:html\" \"pnpm lint:pretty\"",
2927
"lint:all": "pnpm run \"/^lint:[hst].*/\"",
3028
"lint:html": "(mkdir -p \"results\" || true) && eslint ./src --format html > results/eslint.html",
@@ -33,9 +31,6 @@
3331
"lint:test": "eslint --format stylish \"tests/**/*.ts\"",
3432
"madge": "madge -c --no-color --no-spinner --exclude __mocks__ --extensions js,ts src/",
3533
"package": "echo 'zowex: nothing to package.'",
36-
"oldtest": "vitest run --coverage",
37-
"oldtest:ui": "vitest --ui --coverage",
38-
"oldtest:watch": "vitest --watch",
3934
"test": "vitest run --coverage",
4035
"watch": "tsc --watch -p ./"
4136
},

0 commit comments

Comments
 (0)