New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

codi-test-framework

Package Overview
Dependencies
Maintainers
1
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

codi-test-framework - npm Package Compare versions

Comparing version 0.0.2 to 0.0.3

4

package.json
{
"name": "codi-test-framework",
"version": "0.0.2",
"version": "0.0.3",
"description": "A simple test framework for JavaScript",

@@ -11,3 +11,3 @@ "main": "src/testRunner.js",

"scripts": {
"test": "node src/index.js"
"test": "node cli tests"
},

@@ -14,0 +14,0 @@ "keywords": [

@@ -68,3 +68,3 @@ import fs from 'fs';

// Read all files in the test directory
const testFiles = fs.readdirSync(testDirectory).filter(file => file.endsWith('.mjs'));
const testFiles = fs.readdirSync(testDirectory, { recursive: true }).filter(file => file.endsWith('.mjs'));

@@ -71,0 +71,0 @@ // Run each test file

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