Socket
Socket
Sign inDemoInstall

@vitest/runner

Package Overview
Dependencies
Maintainers
3
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@vitest/runner - npm Package Compare versions

Comparing version 0.32.0 to 0.32.1

12

./dist/index.js

@@ -114,10 +114,4 @@ import limit from 'p-limit';

options = { timeout: options };
if (typeof suiteOptions === "object") {
options = {
repeats: suiteOptions.repeats,
retry: suiteOptions.retry,
timeout: suiteOptions.timeout,
...options
};
}
if (typeof suiteOptions === "object")
options = Object.assign({}, suiteOptions, options);
const test3 = {

@@ -273,3 +267,3 @@ id: "",

function formatName(name) {
return typeof name === "string" ? name : name instanceof Function ? name.name : String(name);
return typeof name === "string" ? name : name instanceof Function ? name.name || "<anonymous>" : String(name);
}

@@ -276,0 +270,0 @@ function formatTitle(template, items, idx) {

@@ -114,10 +114,4 @@ import limit from 'p-limit';

options = { timeout: options };
if (typeof suiteOptions === "object") {
options = {
repeats: suiteOptions.repeats,
retry: suiteOptions.retry,
timeout: suiteOptions.timeout,
...options
};
}
if (typeof suiteOptions === "object")
options = Object.assign({}, suiteOptions, options);
const test3 = {

@@ -273,3 +267,3 @@ id: "",

function formatName(name) {
return typeof name === "string" ? name : name instanceof Function ? name.name : String(name);
return typeof name === "string" ? name : name instanceof Function ? name.name || "<anonymous>" : String(name);
}

@@ -276,0 +270,0 @@ function formatTitle(template, items, idx) {

{
"name": "@vitest/runner",
"type": "module",
"version": "0.32.0",
"version": "0.32.1",
"description": "Vitest test runner",

@@ -44,3 +44,3 @@ "license": "MIT",

"pathe": "^1.1.0",
"@vitest/utils": "0.32.0"
"@vitest/utils": "0.32.1"
},

@@ -47,0 +47,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