Socket
Socket
Sign inDemoInstall

vscode

Package Overview
Dependencies
Maintainers
9
Versions
128
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vscode - npm Package Compare versions

Comparing version 1.1.27 to 1.1.28

109

lib/testrunner.d.ts

@@ -6,32 +6,121 @@ declare module 'vscode/lib/testrunner' {

//milliseconds to wait before considering a test slow
/**
* Milliseconds to wait before considering a test slow
*
* @type {Number}
*/
slow?: number;
// timeout in milliseconds
/**
* Enable timeouts
*
* @type {Boolean}
*/
enableTimeouts?: boolean;
/**
* Timeout in milliseconds
*
* @type {Number}
*/
timeout?: number;
// ui name "bdd", "tdd", "exports" etc
/**
* UI name "bdd", "tdd", "exports" etc
*
* @type {String}
*/
ui?: string;
//array of accepted globals
/**
* Array of accepted globals
*
* @type {Array} globals
*/
globals?: any[];
// reporter instance (function or string), defaults to `mocha.reporters.Dot`
/**
* Reporter instance (function or string), defaults to `mocha.reporters.spec`
*
* @type {String | Function}
*/
reporter?: any;
// bail on the first test failure
/**
* Reporter settings object
*
* @type {Object}
*/
reporterOptions?: any;
/**
* Bail on the first test failure
*
* @type {Boolean}
*/
bail?: boolean;
// ignore global leaks
/**
* Ignore global leaks
*
* @type {Boolean}
*/
ignoreLeaks?: boolean;
// grep string or regexp to filter tests with
/**
* grep string or regexp to filter tests with, if a string it is escaped
*
* @type {RegExp | String}
*/
grep?: any;
// colored output from test results
/**
* Use colored output from test results
*
* @type {Boolean}
*/
useColors?: boolean;
// causes test marked with only to fail the suite
/**
* Tests marked only fail the suite
*
* @type {Boolean}
*/
forbidOnly?: boolean;
/**
* Pending tests and tests marked skip fail the suite
*
* @type {Boolean}
*/
forbidPending?: boolean;
/**
* Number of times to retry failed tests
*
* @type {Number}
*/
retries?: number;
/**
* Display long stack-trace on failing
*
* @type {Boolean}
*/
fullStackTrace?: boolean;
/**
* Delay root suite execution
*
* @type {Boolean}
*/
delay?: boolean;
/**
* Use inline diffs rather than +/-
*
* @type {Boolean}
*/
useInlineDiffs?: boolean;
}
}

2

package.json
{
"name": "vscode",
"version": "1.1.27",
"version": "1.1.28",
"typings": "vscode.d.ts",

@@ -5,0 +5,0 @@ "scripts": {

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