Skip to content

Commit 9177a2a

Browse files
authored
add component test (#47)
1 parent da7ab2b commit 9177a2a

File tree

6 files changed

+461
-2
lines changed

6 files changed

+461
-2
lines changed

azure-pipeline.yml

+6
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,12 @@ steps:
6262
env:
6363
CODECOV_TOKEN: $(CODECOV_TOKEN)
6464

65+
- bash: ./node_modules/.bin/codecov -f coverage/component/lcov.info -F component
66+
displayName: 'Report component test coverage'
67+
condition: and(succeeded(), eq(variables['Agent.OS'], 'Darwin'))
68+
env:
69+
CODECOV_TOKEN: $(CODECOV_TOKEN)
70+
6571
- bash: |
6672
npm run publish -- -p $(VSCODE_MARKETPLACE_TOKEN)
6773
displayName: 'Publish'

package-lock.json

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,7 @@
120120
"devDependencies": {
121121
"@types/chai": "^4.2.7",
122122
"@types/chai-as-promised": "^7.1.2",
123+
"@types/chai-subset": "^1.3.3",
123124
"@types/glob": "^7.1.1",
124125
"@types/gulp": "^4.0.6",
125126
"@types/mocha": "^5.2.7",
@@ -130,6 +131,7 @@
130131
"async-child-process": "^1.1.1",
131132
"chai": "^4.2.0",
132133
"chai-as-promised": "^7.1.1",
134+
"chai-subset": "^1.6.0",
133135
"codecov": "^3.6.1",
134136
"get-port": "^5.1.0",
135137
"gulp": "^4.0.2",

tasks/testTasks.ts

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,26 @@
11
import * as gulp from 'gulp';
2+
import * as path from 'path';
23
import spawnNode from './spawnNode';
3-
import { nycPath, unitTestCoverageRootPath, mochaPath } from './projectPaths';
4+
import { nycPath, unitTestCoverageRootPath, mochaPath, rootPath } from './projectPaths';
5+
import { runTests } from 'vscode-test';
46

57
require('./benchmarkTestTask');
68

79
gulp.task('test:e2e', async () => {
810
// TODO: add e2e test
911
});
1012

13+
// TODO: merge component test and unit test
1114
gulp.task('test:component', async () => {
12-
// TODO: add component test
15+
const extensionDevelopmentPath = rootPath;
16+
const extensionTestsPath = path.resolve(rootPath, './out/test/componentTests/index');
17+
18+
// Download VS Code, unzip it and run the integration test
19+
await runTests({
20+
extensionDevelopmentPath,
21+
extensionTestsPath,
22+
launchArgs: ['--disable-extensions']
23+
});
1324
});
1425

1526
gulp.task('test:unit', async () => {

0 commit comments

Comments
 (0)