@eclipse-che/che-e2e 7.56.1-dev-9775650 → 7.56.1-dev-6dff8fe
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/TestConstants.ts +6 -1
- package/build/dockerfiles/Dockerfile +4 -3
- package/dist/TestConstants.js +5 -1
- package/dist/TestConstants.js.map +1 -1
- package/dist/driver/CheReporter.js +10 -31
- package/dist/driver/CheReporter.js.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/inversify.config.js +3 -0
- package/dist/inversify.config.js.map +1 -1
- package/dist/inversify.types.js +1 -0
- package/dist/inversify.types.js.map +1 -1
- package/dist/pageobjects/dashboard/Workspaces.js +10 -2
- package/dist/pageobjects/dashboard/Workspaces.js.map +1 -1
- package/dist/pageobjects/ide/theia/Ide.js +1 -1
- package/dist/pageobjects/ide/theia/Ide.js.map +1 -1
- package/dist/tests/MochaHooks.js +75 -0
- package/dist/tests/MochaHooks.js.map +1 -0
- package/dist/tests/devfiles/che-code/EmptyWorkspace.spec.js +11 -24
- package/dist/tests/devfiles/che-code/EmptyWorkspace.spec.js.map +1 -1
- package/dist/tests/devfiles/theia/DotNetCore.spec.js.map +1 -1
- package/dist/tests/e2e/theia/FactoryUrl.spec.js.map +1 -1
- package/dist/tests/e2e/theia/factories/DirectUrlFactoryWithKeepDirectoryTest.spec.js.map +1 -1
- package/dist/tests/e2e/theia/factories/DirectUrlFactoryWithRootFolderTest.spec.js.map +1 -1
- package/dist/tests/e2e/theia/factories/DirectUrlFactoryWithSpecificBranchTest.spec.js.map +1 -1
- package/dist/tests/e2e_happy_path/theia/DevWorkspaceHappyPath.spec.js +2 -2
- package/dist/tests/e2e_happy_path/theia/DevWorkspaceHappyPath.spec.js.map +1 -1
- package/dist/tests/e2e_happy_path/theia/HappyPath.spec.js +1 -1
- package/dist/tests/e2e_happy_path/theia/HappyPath.spec.js.map +1 -1
- package/dist/testsLibrary/WorkspaceHandlingTests.js +28 -18
- package/dist/testsLibrary/WorkspaceHandlingTests.js.map +1 -1
- package/dist/testsLibrary/che-code/ProjectAndFileTestsCheCode.js +54 -0
- package/dist/testsLibrary/che-code/ProjectAndFileTestsCheCode.js.map +1 -0
- package/dist/testsLibrary/theia/LanguageServerTestsTheia.js.map +1 -1
- package/dist/testsLibrary/theia/ProjectAndFileTestsTheia.js.map +1 -1
- package/dist/utils/DriverHelper.js +0 -3
- package/dist/utils/DriverHelper.js.map +1 -1
- package/dist/utils/VCS/github/GitHubUtil.js +2 -2
- package/dist/utils/VCS/github/GitHubUtil.js.map +1 -1
- package/driver/CheReporter.ts +9 -32
- package/index.ts +1 -0
- package/inversify.config.ts +3 -0
- package/inversify.types.ts +1 -0
- package/mocha-all-devfiles-che-code.json +12 -0
- package/mocha-all-devfiles-theia.json +13 -10
- package/mocha-all-factories-che-code.json +14 -0
- package/mocha-all-factories-theia.json +14 -11
- package/mocha-all-plugins-che-code.json +13 -0
- package/mocha-all-plugins-theia.json +13 -10
- package/mocha-che-code.json +12 -0
- package/mocha-connector-theia.json +10 -7
- package/mocha-devworkspace-happy-path-che-code.json +13 -0
- package/mocha-devworkspace-happy-path-theia.json +12 -9
- package/mocha-factory-che-code.json +13 -0
- package/mocha-factory-theia.json +12 -9
- package/mocha-git-publish-branch-theia.json +12 -9
- package/mocha-git-self-sign-cert-theia.json +12 -9
- package/mocha-git-ssh-theia.json +12 -9
- package/mocha-happy-path-che-code.json +14 -0
- package/mocha-happy-path-theia.json +13 -10
- package/mocha-java-maven.json +11 -7
- package/mocha-java-springboot-che-code.json +12 -0
- package/mocha-java-springboot-theia.json +11 -7
- package/mocha-java-vertx-che-code.json +12 -0
- package/mocha-java-vertx-theia.json +11 -7
- package/mocha-load-theia.json +10 -7
- package/mocha-scala.json +11 -7
- package/mocha-single-devfile.json +9 -6
- package/mocha-theia.json +10 -6
- package/mocha-ws-creation-and-ls-theia.json +10 -7
- package/mocha.intelij.json +11 -7
- package/mocha.ocp.link.json +9 -6
- package/mocha.single.plugin.json +6 -5
- package/package.json +11 -11
- package/pageobjects/dashboard/Workspaces.ts +10 -4
- package/pageobjects/ide/theia/Ide.ts +1 -1
- package/pageobjects/ide/theia/OpenEditors.ts +1 -1
- package/tests/MochaHooks.ts +57 -0
- package/tests/devfiles/che-code/EmptyWorkspace.spec.ts +14 -24
- package/tests/devfiles/theia/DotNetCore.spec.ts +1 -1
- package/tests/e2e/theia/FactoryUrl.spec.ts +1 -1
- package/tests/e2e/theia/factories/DirectUrlFactoryWithKeepDirectoryTest.spec.ts +1 -1
- package/tests/e2e/theia/factories/DirectUrlFactoryWithRootFolderTest.spec.ts +1 -1
- package/tests/e2e/theia/factories/DirectUrlFactoryWithSpecificBranchTest.spec.ts +1 -1
- package/tests/e2e_happy_path/theia/DevWorkspaceHappyPath.spec.ts +3 -3
- package/tests/e2e_happy_path/theia/HappyPath.spec.ts +1 -1
- package/testsLibrary/WorkspaceHandlingTests.ts +30 -23
- package/testsLibrary/che-code/ProjectAndFileTestsCheCode.ts +34 -0
- package/testsLibrary/theia/LanguageServerTestsTheia.ts +2 -2
- package/testsLibrary/theia/ProjectAndFileTestsTheia.ts +2 -2
- package/tslint.json +16 -13
- package/utils/DriverHelper.ts +0 -4
- package/utils/VCS/github/GitHubUtil.ts +2 -2
- package/utils/workspace/ApiUrlResolver.ts +1 -1
- package/utils/workspace/ITestWorkspaceUtil.ts +12 -12
- package/mocha-all-factories-code.json +0 -11
- package/mocha-all-plugins-code.json +0 -10
- package/mocha-code.json +0 -8
- package/mocha-devworkspace-happy-path-code.json +0 -10
- package/mocha-factory-code.json +0 -10
- package/mocha-happy-path-code.json +0 -11
- package/mocha-java-springboot-code.json +0 -9
- package/mocha-java-vertx-code.json +0 -9
package/index.ts
CHANGED
|
@@ -65,4 +65,5 @@ export * from './pageobjects/third-parties/GitOauthAppsSettings';
|
|
|
65
65
|
export * from './testsLibrary/theia/CodeExecutionTestsTheia';
|
|
66
66
|
export * from './testsLibrary/theia/LanguageServerTestsTheia';
|
|
67
67
|
export * from './testsLibrary/theia/ProjectAndFileTestsTheia';
|
|
68
|
+
export * from './testsLibrary/che-code/ProjectAndFileTestsCheCode';
|
|
68
69
|
export * from './testsLibrary/WorkspaceHandlingTests';
|
package/inversify.config.ts
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
* SPDX-License-Identifier: EPL-2.0
|
|
9
9
|
**********************************************************************/
|
|
10
10
|
|
|
11
|
+
import 'reflect-metadata';
|
|
11
12
|
import { Container } from 'inversify';
|
|
12
13
|
import { IDriver } from './driver/IDriver';
|
|
13
14
|
import { ChromeDriver } from './driver/ChromeDriver';
|
|
@@ -71,6 +72,7 @@ import { Sanitizer } from './utils/Sanitizer';
|
|
|
71
72
|
import { NavigationBar } from './pageobjects/ide/theia/NavigationBar';
|
|
72
73
|
import { ApiUrlResolver } from './utils/workspace/ApiUrlResolver';
|
|
73
74
|
import { ITestWorkspaceUtil } from './utils/workspace/ITestWorkspaceUtil';
|
|
75
|
+
import { ProjectAndFileTestsCheCode } from './testsLibrary/che-code/ProjectAndFileTestsCheCode';
|
|
74
76
|
|
|
75
77
|
|
|
76
78
|
const e2eContainer: Container = new Container({ defaultScope: 'Transient' });
|
|
@@ -125,6 +127,7 @@ e2eContainer.bind<PluginsView>(CLASSES.PluginsView).to(PluginsView);
|
|
|
125
127
|
e2eContainer.bind<LanguageServerTestsTheia>(CLASSES.LanguageServerTestsTheia).to(LanguageServerTestsTheia);
|
|
126
128
|
e2eContainer.bind<CodeExecutionTestsTheia>(CLASSES.CodeExecutionTestsTheia).to(CodeExecutionTestsTheia);
|
|
127
129
|
e2eContainer.bind<ProjectAndFileTestsTheia>(CLASSES.ProjectAndFileTestsTheia).to(ProjectAndFileTestsTheia);
|
|
130
|
+
e2eContainer.bind<ProjectAndFileTestsCheCode>(CLASSES.ProjectAndFileTestsCheCode).to(ProjectAndFileTestsCheCode);
|
|
128
131
|
e2eContainer.bind<WorkspaceHandlingTests>(CLASSES.WorkspaceHandlingTests).to(WorkspaceHandlingTests);
|
|
129
132
|
e2eContainer.bind<WorkspaceNameHandler>(CLASSES.WorkspaceNameHandler).to(WorkspaceNameHandler);
|
|
130
133
|
e2eContainer.bind<GitHubPullRequestPlugin>(CLASSES.GitHubPullRequestPlugin).to(GitHubPullRequestPlugin);
|
package/inversify.types.ts
CHANGED
|
@@ -59,6 +59,7 @@ const CLASSES = {
|
|
|
59
59
|
LanguageServerTestsTheia: 'LanguageServerTestsTheia',
|
|
60
60
|
CodeExecutionTestsTheia: 'CodeExecutionTestsTheia',
|
|
61
61
|
ProjectAndFileTestsTheia: 'ProjectAndFileTestsTheia',
|
|
62
|
+
ProjectAndFileTestsCheCode: 'ProjectAndFileTestsCheCode',
|
|
62
63
|
WorkspaceHandlingTests: 'WorkspaceHandlingTests',
|
|
63
64
|
WorkspaceNameHandler: 'WorkspaceNameHandler',
|
|
64
65
|
GitHubPullRequestPlugin: 'GitHubPullRequestPlugin',
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"spec": [
|
|
9
|
+
"dist/tests/login/Login.spec.js",
|
|
10
|
+
"dist/tests/devfiles/che-code/*.spec.js"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"full-trace": true,
|
|
6
|
+
"require": [
|
|
7
|
+
"source-map-support/register",
|
|
8
|
+
"./dist/tests/MochaHooks.js"
|
|
9
|
+
],
|
|
10
|
+
"spec": [
|
|
11
|
+
"dist/tests/login/Login.spec.js",
|
|
12
|
+
"dist/tests/devfiles/theia/*.spec.js",
|
|
13
|
+
"dist/tests/e2e/theia/FactoryUrl.spec.js"
|
|
14
|
+
]
|
|
12
15
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
],
|
|
11
|
+
"spec": [
|
|
12
|
+
"dist/tests/login/Login.spec.js"
|
|
13
|
+
]
|
|
14
|
+
}
|
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
],
|
|
11
|
+
"spec": [
|
|
12
|
+
"dist/tests/login/Login.spec.js",
|
|
13
|
+
"dist/tests/e2e/theia/factories/DirectUrlFactoryWithRootFolderTest.spec.js",
|
|
14
|
+
"dist/tests/e2e/theia/factories/DirectUrlFactoryWithSpecificBranchTest.spec.js"
|
|
15
|
+
]
|
|
13
16
|
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"full-trace": true,
|
|
6
|
+
"require": [
|
|
7
|
+
"source-map-support/register",
|
|
8
|
+
"./dist/tests/MochaHooks.js"
|
|
9
|
+
],
|
|
10
|
+
"spec": [
|
|
11
|
+
"dist/tests/login/Login.spec.js",
|
|
12
|
+
"dist/tests/plugins/theia/VscodeXmlPlugin.spec.js",
|
|
13
|
+
"dist/tests/plugins/theia/VscodeYamlPlugin.spec.js"
|
|
14
|
+
]
|
|
12
15
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"spec": [
|
|
9
|
+
"dist/tests/login/Login.spec.js",
|
|
10
|
+
"dist/tests/e2e/che-code/*.spec.js"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
],
|
|
11
|
+
"spec": "dist/tests/e2e/theia/OpenshiftConnector.spec.js"
|
|
9
12
|
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"full-trace": true,
|
|
6
|
+
"require": [
|
|
7
|
+
"source-map-support/register",
|
|
8
|
+
"./dist/tests/MochaHooks.js"
|
|
9
|
+
],
|
|
10
|
+
"spec": [
|
|
11
|
+
"dist/tests/login/Login.spec.js",
|
|
12
|
+
"dist/tests/e2e_happy_path/theia/DevWorkspaceHappyPath.spec.js"
|
|
13
|
+
]
|
|
11
14
|
}
|
package/mocha-factory-theia.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"full-trace": true,
|
|
6
|
+
"require": [
|
|
7
|
+
"source-map-support/register",
|
|
8
|
+
"./dist/tests/MochaHooks.js"
|
|
9
|
+
],
|
|
10
|
+
"spec": [
|
|
11
|
+
"dist/tests/login/Login.spec.js",
|
|
12
|
+
"dist/tests/e2e/theia/FactoryUrl.spec.js"
|
|
13
|
+
]
|
|
11
14
|
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
],
|
|
11
|
+
"spec": [
|
|
12
|
+
"dist/tests/e2e/theia/GitPublishBranch.spec.js"
|
|
13
|
+
]
|
|
11
14
|
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
],
|
|
11
|
+
"spec": [
|
|
12
|
+
"dist/tests/e2e/theia/GitSelfSignCert.spec.js"
|
|
13
|
+
]
|
|
11
14
|
}
|
package/mocha-git-ssh-theia.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
],
|
|
11
|
+
"spec": [
|
|
12
|
+
"dist/tests/e2e/theia/GitSsh.spec.js"
|
|
13
|
+
]
|
|
11
14
|
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
],
|
|
11
|
+
"spec": [
|
|
12
|
+
"dist/tests/login/Login.spec.js"
|
|
13
|
+
]
|
|
14
|
+
}
|
|
@@ -1,12 +1,15 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
],
|
|
11
|
+
"spec": [
|
|
12
|
+
"dist/tests/login/Login.spec.js",
|
|
13
|
+
"dist/tests/e2e_happy_path/theia/HappyPath.spec.js"
|
|
14
|
+
]
|
|
12
15
|
}
|
package/mocha-java-maven.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"dist/tests/login/Login.spec.js",
|
|
11
|
+
"dist/tests/devfiles/JavaMaven.spec.js"
|
|
12
|
+
]
|
|
9
13
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
4
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"dist/tests/login/Login.spec.js"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
4
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"dist/tests/login/Login.spec.js",
|
|
11
|
+
"dist/tests/devfiles/theia/JavaSpringBoot.spec.js"
|
|
12
|
+
]
|
|
9
13
|
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
{
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
4
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"dist/tests/login/Login.spec.js"
|
|
11
|
+
]
|
|
12
|
+
}
|
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
4
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"dist/tests/login/Login.spec.js",
|
|
11
|
+
"dist/tests/devfiles/theia/JavaVertx.spec.js"
|
|
12
|
+
]
|
|
9
13
|
}
|
package/mocha-load-theia.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
4
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"dist/tests/load_test/theia/LoadTest.spec.js"
|
|
11
|
+
]
|
|
9
12
|
}
|
package/mocha-scala.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
4
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"dist/tests/login/Login.spec.js",
|
|
11
|
+
"dist/tests/devfiles/Scala.spec.js"
|
|
12
|
+
]
|
|
9
13
|
}
|
|
@@ -1,8 +1,11 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
"timeout": "2200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": [
|
|
8
|
+
"source-map-support/register",
|
|
9
|
+
"./dist/tests/MochaHooks.js"
|
|
10
|
+
]
|
|
8
11
|
}
|
package/mocha-theia.json
CHANGED
|
@@ -1,8 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"ui": "tdd",
|
|
5
|
+
"bail": true,
|
|
6
|
+
"full-trace": true,
|
|
7
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
8
|
+
"spec": [
|
|
9
|
+
"dist/tests/login/Login.spec.js",
|
|
10
|
+
"dist/tests/e2e/theia/*.spec.js"
|
|
11
|
+
]
|
|
8
12
|
}
|
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"dist/tests/e2e/theia/WorkspaceCreationAndLsInitialization.spec.js"
|
|
11
|
+
]
|
|
9
12
|
}
|
package/mocha.intelij.json
CHANGED
|
@@ -1,9 +1,13 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
2
|
+
"timeout": "1200000",
|
|
3
|
+
"reporter": "dist/driver/CheReporter.js",
|
|
4
|
+
"require": "./dist/tests/MochaHooks.js",
|
|
5
|
+
"ui": "tdd",
|
|
6
|
+
"bail": true,
|
|
7
|
+
"full-trace": true,
|
|
8
|
+
"support": "source-map-support/register",
|
|
9
|
+
"spec": [
|
|
10
|
+
"./dist/tests/login/Login.spec.js",
|
|
11
|
+
"./dist/tests/intelij/IntelijOpenWorkspace.spec.js"
|
|
12
|
+
]
|
|
9
13
|
}
|