Socket
Socket
Sign inDemoInstall

@vitest/runner

Package Overview
Dependencies
Maintainers
4
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 1.3.0 to 1.3.1

9

dist/chunk-tasks.js

@@ -133,6 +133,9 @@ import { processError } from '@vitest/utils/error';

for (const task of s.tasks) {
if (isAtomTest(task))
if (isAtomTest(task)) {
tests.push(task);
else
tests.push(...getTests(task));
} else {
const taskTests = getTests(task);
for (const test of taskTests)
tests.push(test);
}
}

@@ -139,0 +142,0 @@ }

{
"name": "@vitest/runner",
"type": "module",
"version": "1.3.0",
"version": "1.3.1",
"description": "Vitest test runner",

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

"pathe": "^1.1.1",
"@vitest/utils": "1.3.0"
"@vitest/utils": "1.3.1"
},

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

Sorry, the diff of this file is not supported yet

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