Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

qunit

Package Overview
Dependencies
Maintainers
6
Versions
105
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

qunit - npm Package Compare versions

Comparing version 2.19.4 to 2.20.0

3

bin/qunit.js

@@ -42,4 +42,3 @@ #!/usr/bin/env node

if (opts.reporter === true) {
const requireQUnit = require('../src/cli/require-qunit');
displayAvailableReporters(requireQUnit().reporters);
displayAvailableReporters();
}

@@ -46,0 +45,0 @@

@@ -5,7 +5,7 @@ {

"description": "The powerful, easy-to-use testing framework.",
"version": "2.19.4",
"version": "2.20.0",
"homepage": "https://qunitjs.com",
"author": {
"name": "OpenJS Foundation and other contributors",
"url": "https://github.com/qunitjs/qunit/blob/2.19.4/AUTHORS.txt"
"url": "https://github.com/qunitjs/qunit/blob/2.20.0/AUTHORS.txt"
},

@@ -12,0 +12,0 @@ "repository": {

@@ -1,2 +0,2 @@

<p align="center"><img src="/docs/img/logo-with-colored-dark-text.svg" height="width" height="125" alt="QUnit"></p>
<p align="center"><img src="docs/img/logo-with-colored-dark-text.svg" height="80" alt="QUnit"></p>

@@ -3,0 +3,0 @@ <div align="center">

@@ -28,6 +28,6 @@ 'use strict';

// If we didn't find a reporter, display the available reporters and exit
displayAvailableReporters(builtin, reporterName);
displayAvailableReporters(reporterName);
}
function displayAvailableReporters (builtin, inputReporterName) {
function displayAvailableReporters (inputReporterName) {
const message = [];

@@ -39,3 +39,6 @@

const jsReporters = Object.keys(builtin).sort();
const jsReporters = [
'console',
'tap'
].sort();
message.push(`Built-in reporters: ${jsReporters.join(', ')}`);

@@ -42,0 +45,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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