Comparing version 1.2.0 to 1.2.1
{ | ||
"name": "astq", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Abstract Syntax Tree (AST) Query Engine", | ||
@@ -5,0 +5,0 @@ "main": "lib/astq.browser.js", |
@@ -101,7 +101,6 @@ /* | ||
"astq": { | ||
src: [ "tst/*.js", "!tst/common.js" ] | ||
src: [ "tst/*.js" ] | ||
}, | ||
options: { | ||
reporter: "spec", | ||
require: "tst/common.js", | ||
timeout: 5*1000 | ||
@@ -116,5 +115,5 @@ } | ||
grunt.registerTask("default", [ "jshint", "browserify" ]); | ||
grunt.registerTask("default", [ "jshint", "browserify", "mochaTest" ]); | ||
grunt.registerTask("test", [ "jshint:astq", "browserify:astq-node", "mochaTest" ]); | ||
}; | ||
{ | ||
"name": "astq", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Abstract Syntax Tree (AST) Query Engine", | ||
@@ -36,3 +36,3 @@ "keywords": [ "abstract", "syntax", "tree", "query", "engine", "adaptable" ], | ||
"chai": "~1.10.0", | ||
"6to5ify": "~4.0.0", | ||
"6to5ify": "~4.1.0", | ||
"minifyify": "~6.1.0", | ||
@@ -39,0 +39,0 @@ "browserify-header": "~0.9.1", |
@@ -25,9 +25,13 @@ /* | ||
/* global describe: true */ | ||
/* global it: true */ | ||
/* global expect: true */ | ||
/* global describe: false */ | ||
/* global it: false */ | ||
var chai = require("chai") | ||
var expect = chai.expect | ||
chai.config.includeStack = true | ||
var ASTQ = require("../lib/astq.node.js"); | ||
describe("ASTq Library", function () { | ||
it("basic functionality", function () { | ||
var ASTQ = require("../lib/astq.node.js"); | ||
var astq = new ASTQ(); | ||
@@ -34,0 +38,0 @@ expect(astq).to.respondTo("version") |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
431785
25
6480