@codingame/monaco-vscode-testing-service-override 2.1.4 → 2.2.0-next.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@codingame/monaco-vscode-testing-service-override",
3
- "version": "2.1.4",
3
+ "version": "2.2.0-next.2",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -18,7 +18,7 @@
18
18
  "module": "index.js",
19
19
  "types": "index.d.ts",
20
20
  "dependencies": {
21
- "vscode": "npm:@codingame/monaco-vscode-api@2.1.4",
21
+ "vscode": "npm:@codingame/monaco-vscode-api@2.2.0-next.2",
22
22
  "@xterm/addon-canvas": "0.6.0-beta.20",
23
23
  "@xterm/addon-image": "0.7.0-beta.18",
24
24
  "@xterm/addon-search": "0.14.0-beta.20",
@@ -85,6 +85,21 @@ viewsRegistry.registerViews([{
85
85
  when: ( TestingContextKeys.hasAnyResults.isEqualTo(true)),
86
86
  ctorDescriptor: ( new SyncDescriptor(TestResultsView)),
87
87
  }], testResultsViewContainer);
88
+ viewsRegistry.registerViewWelcomeContent("workbench.view.testing" , {
89
+ content: ( localizeWithPath(
90
+ 'vs/workbench/contrib/testing/browser/testing.contribution',
91
+ 'noTestProvidersRegistered',
92
+ "No tests have been found in this workspace yet."
93
+ )),
94
+ });
95
+ viewsRegistry.registerViewWelcomeContent("workbench.view.testing" , {
96
+ content: '[' + ( localizeWithPath(
97
+ 'vs/workbench/contrib/testing/browser/testing.contribution',
98
+ 'searchForAdditionalTestExtensions',
99
+ "Install Additional Test Extensions..."
100
+ )) + `](command:${"testing.searchForTestExtension" })`,
101
+ order: 10
102
+ });
88
103
  viewsRegistry.registerViews([{
89
104
  id: "workbench.view.testing" ,
90
105
  name: ( localize2WithPath(