vscode-test
Advanced tools
Comparing version 1.3.0 to 1.4.0
# Changelog | ||
### 1.4.0 | 2020-04-11 | ||
- Propagate signal when subprocess terminates. [#56](https://github.com/microsoft/vscode-test/pull/56). | ||
### 1.3.0 | 2019-12-11 | ||
@@ -4,0 +8,0 @@ |
export declare function rmdir(dir: string): Promise<{}>; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ /** |
@@ -0,0 +0,0 @@ "use strict"; |
export { downloadAndUnzipVSCode } from './download'; | ||
export { runTests } from './runTest'; | ||
export { resolveCliPathFromVSCodeExecutablePath } from './util'; |
@@ -0,0 +0,0 @@ "use strict"; |
export declare function getJSON(api: string): Promise<any>; |
@@ -0,0 +0,0 @@ "use strict"; |
@@ -0,0 +0,0 @@ import { DownloadVersion, DownloadPlatform } from './download'; |
@@ -92,5 +92,8 @@ "use strict"; | ||
}); | ||
cmd.on('close', function (code) { | ||
cmd.on('close', function (code, signal) { | ||
console.log("Exit code: " + code); | ||
if (code !== 0) { | ||
if (code === null) { | ||
reject(signal); | ||
} | ||
else if (code !== 0) { | ||
reject('Failed'); | ||
@@ -97,0 +100,0 @@ } |
@@ -0,0 +0,0 @@ /// <reference types="node" /> |
@@ -0,0 +0,0 @@ "use strict"; |
{ | ||
"name": "vscode-test", | ||
"version": "1.3.0", | ||
"version": "1.4.0", | ||
"scripts": { | ||
@@ -5,0 +5,0 @@ "compile": "tsc -p ./", |
@@ -136,2 +136,9 @@ <p> | ||
## Development | ||
- `yarn install` | ||
- Make necessary changes in [`lib`](./lib) | ||
- `yarn compile` (or `yarn watch`) | ||
- In [`sample`](./sample), run `yarn install`, `yarn compile` and `yarn test` to make sure integration test can run successfully | ||
## License | ||
@@ -138,0 +145,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
50911
786
160
7