-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip * vscode test cli + merge coverage * dont run e2e on linux ci * separate commands * fix bug with run-s in windows * more timeout on debugger tests * use c8 to run unit tests so it picks up child process coverage * use components instead of flags * let codecov merge reports and resolove yml location * fix codecov.yml syntax
- Loading branch information
Showing
16 changed files
with
397 additions
and
217 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"extends": "@istanbuljs/nyc-config-typescript", | ||
"lines": 70, | ||
"all": true, | ||
"include": ["out/**", "packages/**"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
var { defineConfig } = require('@vscode/test-cli') | ||
|
||
module.exports = defineConfig({ | ||
tests: [ | ||
{ | ||
files: 'out/client/src/test/*.test.js', | ||
version: 'stable', | ||
extensionDevelopmentPath: __dirname, | ||
workspaceFolder: `${__dirname}/packages/client/testFixture`, | ||
mocha: { | ||
color: true, | ||
timeout: 10 * 1000, | ||
ui: 'tdd', | ||
}, | ||
}, | ||
], | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
coverage: | ||
status: | ||
project: | ||
default: | ||
target: auto | ||
threshold: 2% | ||
base: auto | ||
|
||
comment: | ||
layout: 'diff, components, files' | ||
behavior: default | ||
|
||
component_management: | ||
default_rules: | ||
statuses: | ||
- target: auto | ||
individual_components: | ||
- component_id: debug-adapter | ||
name: Debugger | ||
paths: | ||
- packages/debug-adapter/ | ||
- component_id: client | ||
name: Extension Client | ||
paths: | ||
- packages/client/ | ||
- component_id: lsp-server | ||
name: LSP Server | ||
paths: | ||
- packages/server/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"wollokLSP.typeSystem.enabled": false | ||
} | ||
"wollokLSP.typeSystem.enabled": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
var path = require('path') | ||
|
||
module.exports = { | ||
spec: 'src/test/**/*.test.ts', | ||
spec: path.resolve(__dirname, '../../out/debug-adapter/src/test/*.test.js'), | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.