Socket
Socket
Sign inDemoInstall

@vscode/test-electron

Package Overview
Dependencies
Maintainers
17
Versions
29
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vscode/test-electron - npm Package Compare versions

Comparing version 2.0.0 to 2.0.1

4

CHANGELOG.md
# Changelog
### 2.0.1 | 2021-12-29
- Fix extra new lines added to test output
### 2.0.0 | 2021-12-14

@@ -4,0 +8,0 @@

export declare function rmdir(dir: string): Promise<void>;

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /**

@@ -0,0 +0,0 @@ "use strict";

export { download, downloadAndUnzipVSCode } from './download';
export { runTests } from './runTest';
export { resolveCliPathFromVSCodeExecutablePath } from './util';

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ /// <reference types="node" />

@@ -0,0 +0,0 @@ "use strict";

@@ -0,0 +0,0 @@ import { DownloadVersion, DownloadPlatform } from './download';

8

out/runTest.js

@@ -50,8 +50,4 @@ "use strict";

const cmd = cp.spawn(executable, args, { env: fullEnv });
cmd.stdout.on('data', function (data) {
console.log(data.toString());
});
cmd.stderr.on('data', function (data) {
console.error(data.toString());
});
cmd.stdout.on('data', d => process.stdout.write(d));
cmd.stderr.on('data', d => process.stderr.write(d));
cmd.on('error', function (data) {

@@ -58,0 +54,0 @@ console.log('Test error: ' + data.toString());

@@ -0,0 +0,0 @@ /// <reference types="node" />

@@ -0,0 +0,0 @@ "use strict";

{
"name": "@vscode/test-electron",
"version": "2.0.0",
"version": "2.0.1",
"scripts": {

@@ -5,0 +5,0 @@ "compile": "tsc -p ./",

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