Globing pattern test grunt (#1)

* Fix Matching patterns tests directories Grunt task of eslint

* Fix eslint errors in testsuite.

* Format one line per file in src section in Gruntfile.js
This commit is contained in:
Rodrigo Ramírez Norambuena
2017-04-03 11:47:22 -03:00
committed by fewieden
parent a74efd285c
commit 636dbe5b95
4 changed files with 31 additions and 14 deletions

View File

@@ -63,8 +63,8 @@ describe("'global.root_path' set in js/app.js", function() {
});
it("should expect the global.version equals package.json file", function() {
version_package = JSON.parse(fs.readFileSync("package.json", "utf8")).version;
expect(this.sandbox.global.version).to.equal(version_package);
versionPackage = JSON.parse(fs.readFileSync("package.json", "utf8")).version;
expect(this.sandbox.global.version).to.equal(versionPackage);
});
});