Skip to content

Commit 0255dc2

Browse files
Remove test suite referencing removed telemetry
1 parent 1305d32 commit 0255dc2

File tree

5 files changed

+1
-159
lines changed

5 files changed

+1
-159
lines changed

.vscode/launch.json

Lines changed: 0 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -109,31 +109,6 @@
109109
],
110110
"preLaunchTask": "buildDev"
111111
},
112-
{
113-
"name": "Launch Razor Tests",
114-
"type": "extensionHost",
115-
"request": "launch",
116-
"runtimeExecutable": "${execPath}",
117-
"args": [
118-
"--disable-extensions",
119-
"${workspaceRoot}/test/integrationTests/testAssets/BasicRazorApp2_1",
120-
"--extensionDevelopmentPath=${workspaceRoot}",
121-
"--extensionTestsPath=${workspaceRoot}/out/test/razorTests"
122-
],
123-
"env": {
124-
"CODE_WORKSPACE_ROOT": "${workspaceRoot}",
125-
"CODE_TESTS_PATH": "${workspaceRoot}/out/test/razorTests",
126-
"CODE_TESTS_WORKSPACE": "${workspaceRoot}/test/integrationTests/testAssets/BasicRazorApp2_1",
127-
"CODE_EXTENSIONS_PATH": "${workspaceRoot}",
128-
"OSVC_SUITE": "BasicRazorApp2_1"
129-
},
130-
"stopOnEntry": false,
131-
"sourceMaps": true,
132-
"outFiles": [
133-
"${workspaceRoot}/dist/*.js"
134-
],
135-
"preLaunchTask": "buildDev"
136-
},
137112
{
138113
"type": "node",
139114
"request": "launch",

tasks/testTasks.ts

Lines changed: 1 addition & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ gulp.task("test:feature", async () => {
1616
OSVC_SUITE: "featureTests",
1717
CODE_TESTS_PATH: path.join(testRootPath, "featureTests")
1818
};
19-
19+
2020
return spawnNode([vscodeTestHostPath, "--verbose"], {
2121
env
2222
});
@@ -45,10 +45,6 @@ gulp.task("test:integration:slnWithCsproj", async () => {
4545
return runIntegrationTest("slnWithCsproj");
4646
});
4747

48-
gulp.task("test:integration:razor:BasicRazorApp2_1", async () => {
49-
return runRazorIntegrationTest("BasicRazorApp2_1");
50-
});
51-
5248
gulp.task(
5349
"test:integration", gulp.series(
5450
"test:integration:singleCsproj",
@@ -72,15 +68,3 @@ async function runIntegrationTest(testAssetName: string) {
7268

7369
return spawnNode([vscodeTestHostPath], { env, cwd: rootPath });
7470
}
75-
76-
async function runRazorIntegrationTest(testAssetName: string) {
77-
let env = {
78-
OSVC_SUITE: testAssetName,
79-
CODE_TESTS_PATH: path.join(testRootPath, "razorTests"),
80-
CODE_EXTENSIONS_PATH: codeExtensionPath,
81-
CODE_TESTS_WORKSPACE: path.join(testAssetsRootPath, testAssetName),
82-
CODE_WORKSPACE_ROOT: rootPath,
83-
};
84-
85-
return spawnNode([vscodeTestHostPath], { env, cwd: rootPath });
86-
}

test/razorTests/index.ts

Lines changed: 0 additions & 48 deletions
This file was deleted.

test/razorTests/razorTelemetry.integration.test.ts

Lines changed: 0 additions & 55 deletions
This file was deleted.

test/razorTests/testUtils.ts

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)