Skip to content

Commit ebc6075

Browse files
committed
fix: errors
1 parent 229256f commit ebc6075

File tree

7 files changed

+73
-46
lines changed

7 files changed

+73
-46
lines changed

package-lock.json

+50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+9-8
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@
4040
]
4141
},
4242
"configuration": {
43-
"title": "Testplane",
44-
"properties": {
45-
"testplane.configPath": {
46-
"markdownDescription": "The path to the Testplane [configuration file](https://testplane.io/docs/v8/config/main/)",
47-
"type": "string",
48-
"scope": "window"
49-
}
43+
"title": "Testplane",
44+
"properties": {
45+
"testplane.configPath": {
46+
"markdownDescription": "The path to the Testplane [configuration file](https://testplane.io/docs/v8/config/main/)",
47+
"type": "string",
48+
"scope": "window"
5049
}
50+
}
5151
}
5252
},
5353
"repository": {
@@ -60,7 +60,7 @@
6060
"build": "tsup --minify --clean",
6161
"watch": "tsup --watch --sourcemap",
6262
"test": "npm run lint && npm run test-e2e",
63-
"test-e2e": "npm run test-e2e:basic && npm run test-e2e:settings-view && npm run test-e2e:vscode-settings && npm run test-e2e:empty",
63+
"test-e2e": "concurrently -c 'auto' 'npm:test-e2e:basic' 'npm:test-e2e:settings-view' 'npm:test-e2e:vscode-settings' 'npm:test-e2e:empty'",
6464
"test-e2e:basic": "wdio run ./tests/e2e/basic/wdio.conf.ts",
6565
"test-e2e:settings-view": "wdio run ./tests/e2e/settings-view/wdio.conf.ts",
6666
"test-e2e:vscode-settings": "wdio run ./tests/e2e/vscode-settings/wdio.conf.ts",
@@ -88,6 +88,7 @@
8888
"@wdio/mocha-framework": "^8.40.3",
8989
"@wdio/spec-reporter": "^8.40.3",
9090
"birpc": "^0.2.17",
91+
"concurrently": "^9.0.1",
9192
"error-stack-parser": "^2.1.4",
9293
"eslint": "^8.56.0",
9394
"eslint-config-gemini-testing": "^3.0.0",
+1-27
Original file line numberDiff line numberDiff line change
@@ -1,27 +1 @@
1-
export default {
2-
gridUrl: "http://localhost:4444/wd/hub",
3-
baseUrl: "http://localhost",
4-
pageLoadTimeout: 0,
5-
httpTimeout: 60000,
6-
testTimeout: 90000,
7-
resetCursor: false,
8-
takeScreenshotOnFails: {
9-
testFail: false,
10-
assertViewFail: false,
11-
},
12-
sets: {
13-
desktop: {
14-
files: ["tests/**/*.testplane.ts"],
15-
browsers: ["chrome"],
16-
},
17-
},
18-
browsers: {
19-
chrome: {
20-
automationProtocol: "devtools",
21-
headless: true,
22-
desiredCapabilities: {
23-
browserName: "chrome",
24-
},
25-
},
26-
},
27-
};
1+
throw new Error("This config should not be used");

src/config/index.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
import * as vscode from "vscode";
22
import { getVSCodeSettings, type VSCodeSettings } from "./settings";
3-
import { findTpnConfigFile } from "./utils";
3+
import { findTestplaneConfigFile } from "./utils";
44

55
export type VSCodeConfig = VSCodeSettings;
66

77
export const getVSCodeConfig = async (wf?: vscode.WorkspaceFolder): Promise<VSCodeConfig> => {
88
const settings = getVSCodeSettings(wf);
9-
const configPath = settings.configPath ? settings.configPath : await findTpnConfigFile();
9+
const configPath = settings.configPath ? settings.configPath : await findTestplaneConfigFile();
1010

1111
return { configPath };
1212
};

src/config/settings.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const getVSCodeSettings = (wf?: vscode.WorkspaceFolder): VSCodeSettings =
1818
defaultValue,
1919
});
2020

21-
const configPath = get<string | undefined>("configPath");
21+
const configPath = get<string>("configPath");
2222

2323
return {
2424
configPath: resolveConfigPath(configPath, wf),

src/config/utils.ts

+8-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,15 @@ import * as vscode from "vscode";
33
import _ from "lodash";
44
import { CONFIG_GLOB, CONFIG_GLOB_EXCLUDE } from "../constants";
55

6-
export const findTpnConfigFile = async (): Promise<string | undefined> => {
7-
const configs = (await vscode.workspace.findFiles(CONFIG_GLOB, CONFIG_GLOB_EXCLUDE)).sort((a, b) => {
6+
export const findTestplaneConfigFile = async (): Promise<string | undefined> => {
7+
const configs = await vscode.workspace.findFiles(CONFIG_GLOB, CONFIG_GLOB_EXCLUDE);
8+
const consfigsSortedByNesting = configs.sort((a, b) => {
89
return a.fsPath.split(path.sep).length - b.fsPath.split(path.sep).length;
910
});
1011

11-
return _.isEmpty(configs) ? undefined : configs[0].fsPath;
12+
if (_.isEmpty(consfigsSortedByNesting)) {
13+
return;
14+
}
15+
16+
return configs[0].fsPath;
1217
};

tests/e2e/vscode-settings/specs/use-vscode-settings.ts

+2-5
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,8 @@ describe(".vscode/settings.json", () => {
1111
await sidebar.waitTestsRead();
1212

1313
const [firstSection] = await sidebar.getSections();
14-
const [mainTreeItem] = await firstSection.getVisibleItems();
14+
const visibleItems = await firstSection.getVisibleItems();
1515

16-
await mainTreeItem.expandAll();
17-
const testsFullTitle = await mainTreeItem.getTestsFullTitle();
18-
19-
expect(testsFullTitle).toEqual(["tests test.testplane.ts success another-bro"]);
16+
expect(visibleItems).toHaveLength(1);
2017
});
2118
});

0 commit comments

Comments
 (0)