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

jasmine-node

Package Overview
Dependencies
Maintainers
2
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jasmine-node - npm Package Compare versions

Comparing version 1.6.0 to 1.7.0

spec/litcoffee/Litcoffee.spec.litcoffee

2

lib/jasmine-node/cli.js

@@ -64,3 +64,3 @@ var util,

require('coffee-script');
extentions = "js|coffee";
extentions = "js|coffee|litcoffee";
break;

@@ -67,0 +67,0 @@ case '-m':

var fs = require('fs');
var mkdirp = require('mkdirp');
var util;

@@ -97,3 +98,3 @@ try {

util.puts('creating junit xml report save path: ' + junitreport.savePath);
fs.mkdirSync(junitreport.savePath, "0755");
mkdirp.sync(junitreport.savePath, "0755");
}

@@ -100,0 +101,0 @@ jasmineEnv.addReporter(new jasmine.JUnitXmlReporter(junitreport.savePath,

{
"name": "jasmine-node",
"version": "1.6.0",
"version": "1.7.0",
"description": "DOM-less simple JavaScript BDD testing framework for Node",

@@ -31,3 +31,4 @@ "contributors": [

"underscore": ">= 1.3.1",
"gaze": "~0.3.2"
"gaze": "~0.3.2",
"mkdirp": "~0.3.5"
},

@@ -34,0 +35,0 @@ "bin": "bin/jasmine-node",

@@ -17,2 +17,3 @@ jasmine-node

----------
* Ability to test specs written in Literate Coffee-Script
* Teamcity Reporter reinstated.

@@ -31,2 +32,3 @@ * Ability to specify multiple files to test via list in command line

* Verbose mode tabs <code>describe</code> blocks much more accurately!
* --coffee now allows specs written in Literate CoffeeScript (.litcoffee)

@@ -48,4 +50,3 @@ install

spec/ directory (note: your specification files must end with either
.spec.js or .spec.coffee; otherwise jasmine-node won't find them!). You
can use sub-directories to better organise your specs.
.spec.js, .spec.coffee or .spec.litcoffee; otherwise jasmine-node won't find them!). You can use sub-directories to better organise your specs.

@@ -65,3 +66,3 @@ If you have installed the npm package, you can run it with:

* <code>--autotest</code>, provides automatic execution of specs after each change
* <code>--coffee</code>, allow execution of .coffee specs
* <code>--coffee</code>, allow execution of .coffee and .litcoffee specs
* <code>--color</code>, indicates spec output should uses color to

@@ -149,2 +150,3 @@ indicates passing (green) or failing (red) specs

* _1.7.0 - Literate Coffee-Script now testable (thanks to [magicmoose](https://github.com/magicmoose))_
* _1.6.0 - Teamcity Reporter Reinstated (thanks to [bhcleek](https://github.com/bhcleek))_

@@ -151,0 +153,0 @@ * _1.5.1 - Missing files and require exceptions will now report instead of failing silently_

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