Socket
Socket
Sign inDemoInstall

vscode-test

Package Overview
Dependencies
Maintainers
3
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode-test - npm Package Compare versions

Comparing version 1.3.0 to 1.4.0

4

CHANGELOG.md
# 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';

7

out/runTest.js

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc