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.34.3 to 0.34.4

3

dist/utils.js

@@ -53,3 +53,4 @@ import { processError } from '@vitest/utils/error';

function getTaskFullName(task) {
return `${task.suite ? `${getTaskFullName(task.suite)} ` : ""}${task.name}`;
const fullName = task.suite ? getTaskFullName(task.suite) : null;
return fullName ? `${fullName} ${task.name}` : task.name;
}

@@ -56,0 +57,0 @@ function someTasksAreOnly(suite) {

{
"name": "@vitest/runner",
"type": "module",
"version": "0.34.3",
"version": "0.34.4",
"description": "Vitest test runner",

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

"pathe": "^1.1.1",
"@vitest/utils": "0.34.3"
"@vitest/utils": "0.34.4"
},

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