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

mocha

Package Overview
Dependencies
Maintainers
1
Versions
202
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mocha - npm Package Compare versions

Comparing version 0.0.4 to 0.0.5

5

History.md
0.0.5 / 2011-11-24
==================
* Fixed: make mocha.opts whitespace less picky [kkaefer]
0.0.4 / 2011-11-24

@@ -3,0 +8,0 @@ ==================

2

lib/mocha.js

@@ -12,3 +12,3 @@

exports.version = '0.0.4';
exports.version = '0.0.5';

@@ -15,0 +15,0 @@ exports.interfaces = require('./interfaces');

@@ -112,4 +112,4 @@

// format
var fmt = color('error title', ' %s) %s: ')
+ color('error message', '%s')
var fmt = color('error title', ' %s) %s:\n')
+ color('error message', ' %s')
+ color('error stack', '\n%s\n');

@@ -116,0 +116,0 @@

{
"name": "mocha"
, "version": "0.0.4"
, "version": "0.0.5"
, "description": "Test framework inspired by JSpec, Expresso, & Qunit"

@@ -5,0 +5,0 @@ , "keywords": ["test", "bdd", "tdd", "tap"]

@@ -13,3 +13,3 @@

http.get({ path: '/', port: 8888 }, function(res){
res.statusCode.should.equal(200);
res.should.have.status(200);
done();

@@ -16,0 +16,0 @@ })

@@ -32,3 +32,3 @@

var buf = '';
res.statusCode.should.equal(200);
res.should.have.status(200);
res.setEncoding('utf8');

@@ -35,0 +35,0 @@ res.on('data', function(chunk){ buf += chunk });

@@ -28,3 +28,3 @@

var buf = '';
res.statusCode.should.equal(200);
res.should.have.status(200);
res.setEncoding('utf8');

@@ -31,0 +31,0 @@ res.on('data', function(chunk){ buf += chunk });

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