From 52e60ba1dad3bc654af9db3cd66e259211d56198 Mon Sep 17 00:00:00 2001 From: Sheng Chen Date: Thu, 5 Sep 2019 12:29:17 +0800 Subject: [PATCH 1/2] fix: Change the explorer name and the activation event --- package.json | 3 +-- package.nls.json | 1 - package.nls.zh.json | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/package.json b/package.json index 0e213224..65a76000 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,6 @@ "onLanguage:java", "workspaceContains:pom.xml", "workspaceContains:build.gradle", - "onView:testExplorer", "onCommand:java.test.explorer.refresh", "onCommand:java.test.explorer.run", "onCommand:java.test.explorer.debug", @@ -52,7 +51,7 @@ "test": [ { "id": "testExplorer", - "name": "%contributes.views.explorer.testExplorer.name%" + "name": "Java" } ] }, diff --git a/package.nls.json b/package.nls.json index 2f43e534..22dfcfc0 100644 --- a/package.nls.json +++ b/package.nls.json @@ -1,6 +1,5 @@ { "description": "Run and debug JUnit or TestNG test cases", - "contributes.views.explorer.testExplorer.name": "Test Explorer", "contributes.commands.java.test.show.output.title": "Show Test Output", "contributes.commands.java.test.open.log.title": "Open Test Runner Log", "contributes.commands.java.test.explorer.run.title": "Run Test", diff --git a/package.nls.zh.json b/package.nls.zh.json index 6a6aac58..5e65b6ca 100644 --- a/package.nls.zh.json +++ b/package.nls.zh.json @@ -1,6 +1,5 @@ { "description": "运行并调试 JUnit 或 TestNG 测试用例", - "contributes.views.explorer.testExplorer.name": "测试管理器", "contributes.commands.java.test.show.output.title": "显示测试输出", "contributes.commands.java.test.open.log.title": "打开测试运行日志", "contributes.commands.java.test.explorer.run.title": "运行测试用例", From a7b52be4c03a2b38e7acd9ee48a94edb557e1201 Mon Sep 17 00:00:00 2001 From: Sheng Chen Date: Thu, 5 Sep 2019 15:14:35 +0800 Subject: [PATCH 2/2] Revert the change to remove the activation event --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 65a76000..589b7ce6 100644 --- a/package.json +++ b/package.json @@ -31,6 +31,7 @@ "onLanguage:java", "workspaceContains:pom.xml", "workspaceContains:build.gradle", + "onView:testExplorer", "onCommand:java.test.explorer.refresh", "onCommand:java.test.explorer.run", "onCommand:java.test.explorer.debug",