@theia/api-tests 1.75.0-next.8 → 1.76.0-next.0
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/package.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@theia/api-tests",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.76.0-next.0+52f32db6e",
|
|
4
4
|
"description": "Theia API tests",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@theia/core": "1.
|
|
6
|
+
"@theia/core": "1.76.0-next.0+52f32db6e"
|
|
7
7
|
},
|
|
8
8
|
"license": "EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0",
|
|
9
9
|
"repository": {
|
|
@@ -20,5 +20,5 @@
|
|
|
20
20
|
"publishConfig": {
|
|
21
21
|
"access": "public"
|
|
22
22
|
},
|
|
23
|
-
"gitHead": "
|
|
23
|
+
"gitHead": "52f32db6e32d1f88dbbbbde08c8a01ad75c53e11"
|
|
24
24
|
}
|
|
@@ -38,7 +38,7 @@ describe('Explorer and Editor - open and close', function () {
|
|
|
38
38
|
const progressStatusBarItem = container.get(ProgressStatusBarItem);
|
|
39
39
|
|
|
40
40
|
|
|
41
|
-
const fileUri = rootUri.resolve('
|
|
41
|
+
const fileUri = rootUri.resolve('esbuild.mjs');
|
|
42
42
|
const toTearDown = new DisposableCollection();
|
|
43
43
|
|
|
44
44
|
function pause(ms = 500) {
|
package/src/keybindings.spec.js
CHANGED
|
@@ -73,7 +73,7 @@ describe('Keybindings', function () {
|
|
|
73
73
|
when: 'false'
|
|
74
74
|
}));
|
|
75
75
|
|
|
76
|
-
const editor = await editorManager.open(workspaceService.tryGetRoots()[0].resource.resolve('
|
|
76
|
+
const editor = await editorManager.open(workspaceService.tryGetRoots()[0].resource.resolve('esbuild.mjs'), {
|
|
77
77
|
mode: 'activate',
|
|
78
78
|
selection: {
|
|
79
79
|
start: {
|
package/src/menus.spec.js
CHANGED
|
@@ -33,7 +33,6 @@ describe('Menus', function () {
|
|
|
33
33
|
const { EXPLORER_VIEW_CONTAINER_ID } = require('@theia/navigator/lib/browser/navigator-widget-factory');
|
|
34
34
|
const { FileNavigatorContribution } = require('@theia/navigator/lib/browser/navigator-contribution');
|
|
35
35
|
const { ScmContribution } = require('@theia/scm/lib/browser/scm-contribution');
|
|
36
|
-
const { ScmHistoryContribution } = require('@theia/scm-extra/lib/browser/history/scm-history-contribution');
|
|
37
36
|
const { OutlineViewContribution } = require('@theia/outline-view/lib/browser/outline-view-contribution');
|
|
38
37
|
const { OutputContribution } = require('@theia/output/lib/browser/output-contribution');
|
|
39
38
|
const { PluginFrontendViewContribution } = require('@theia/plugin-ext/lib/main/browser/plugin-frontend-view-contribution');
|
|
@@ -66,7 +65,6 @@ describe('Menus', function () {
|
|
|
66
65
|
container.get(CallHierarchyContribution),
|
|
67
66
|
container.get(FileNavigatorContribution),
|
|
68
67
|
container.get(ScmContribution),
|
|
69
|
-
container.get(ScmHistoryContribution),
|
|
70
68
|
container.get(OutlineViewContribution),
|
|
71
69
|
container.get(OutputContribution),
|
|
72
70
|
container.get(PluginFrontendViewContribution),
|
|
@@ -47,7 +47,7 @@ describe('Undo, Redo and Select All', function () {
|
|
|
47
47
|
const preferenceService = container.get(PreferenceService)
|
|
48
48
|
|
|
49
49
|
const rootUri = workspaceService.tryGetRoots()[0].resource;
|
|
50
|
-
const fileUri = rootUri.resolve('
|
|
50
|
+
const fileUri = rootUri.resolve('esbuild.mjs');
|
|
51
51
|
|
|
52
52
|
const toTearDown = new DisposableCollection();
|
|
53
53
|
|