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

literate-jasmine

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

literate-jasmine - npm Package Compare versions

Comparing version 0.0.17 to 0.0.18

console.png

2

package.json
{
"name": "literate-jasmine",
"description": "write tests in markdown that are parsed and then run using jasmine",
"version": "0.0.17",
"version": "0.0.18",
"bin": {

@@ -6,0 +6,0 @@ "literate-jasmine": "./bin/literate-jasmine"

@@ -63,3 +63,3 @@ # literate-jasmine [![Build Status](https://travis-ci.org/cymen/literate-jasmine.png?branch=master)](https://travis-ci.org/cymen/literate-jasmine)

![screen shot of running literate-jasmine on this README.md](run.png)
![screen shot of running literate-jasmine on this README.md](console.png)

@@ -66,0 +66,0 @@ (If you're working on this project, run `./bin/literate-jasmine` instead.)

@@ -23,5 +23,3 @@ require('jasmine-node');

complete.global = parser.parseCodeBlocks(tree, 1);
complete.globalFn = function(then) {
eval(complete.global);
};
complete.globalFn = new Function(complete.global);

@@ -56,5 +54,3 @@ for (var i=2; i < tree.length; i++) {

parsedDescribe.beforeEach = parser.parseCodeBlocks(tree, offset);
parsedDescribe.beforeEachFn = function() {
eval(parsedDescribe.beforeEach);
};
parsedDescribe.beforeEachFn = new Function(parsedDescribe.beforeEach);

@@ -93,5 +89,3 @@ while (true) {

it.fn = function() {
eval(it.code);
};
it.fn = new Function(it.code);

@@ -98,0 +92,0 @@ return it;

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